build default on ubuntu mips64 gcc #3098
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: build default on ubuntu mips64 gcc | |
| on: | |
| repository_dispatch: | |
| workflow_dispatch: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '0 */2 * * *' | |
| env: | |
| BUILD_TYPE: Release | |
| LD_LIBRARY_PATH: /usr/mips64-linux-gnuabi64/lib | |
| jobs: | |
| build: | |
| name: Test on ${{matrix.os}} | |
| runs-on: ${{matrix.os}} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04] | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: install dependencies | |
| run: | | |
| sudo apt update | |
| sudo apt install cmake make qemu-user-binfmt \ | |
| gcc gcc-mips64-linux-gnuabi64 | |
| - name: configure cmake | |
| run: | | |
| cmake -B ${{github.workspace}}/build \ | |
| -D CMAKE_INSTALL_PREFIX=${{github.workspace}}/build/install \ | |
| -D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \ | |
| -D CMAKE_C_COMPILER=mips64-linux-gnuabi64-gcc \ | |
| -D HOST_C_COMPILER=gcc \ | |
| -D BFDEV_STRICT=ON \ | |
| -D BFDEV_EXAMPLES=ON \ | |
| -D BFDEV_TESTSUITE=ON | |
| - name: make | |
| run: | | |
| cmake --build ${{github.workspace}}/build \ | |
| --config ${{env.BUILD_TYPE}} | |
| - name: install | |
| run: | | |
| cmake --build ${{github.workspace}}/build \ | |
| --config ${{env.BUILD_TYPE}} -- install | |
| - name: ctest | |
| working-directory: ${{github.workspace}}/build | |
| run: | | |
| sudo ln -s /usr/mips64-linux-gnuabi64/lib/ld.so.1 /lib64 | |
| ctest -C ${{env.BUILD_TYPE}} -V |