Fixing nix build #9
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 | |
| on: | |
| push: | |
| branches: [ "*" ] | |
| pull_request: | |
| branches: [ "*" ] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-14, ubuntu-24.04-arm, macos-15-intel] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout cadiback | |
| uses: actions/checkout@v4 | |
| with: | |
| path: cadiback | |
| - name: Checkout cadical | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: meelgroup/cadical | |
| path: cadical | |
| - name: Set up ccache | |
| uses: hendrikmuhs/ccache-action@v1 | |
| - name: Build cadical | |
| run: | | |
| cd cadical | |
| cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_POSITION_INDEPENDENT_CODE=ON | |
| cmake --build build -j8 | |
| - name: Build cadiback | |
| run: | | |
| cd cadiback | |
| cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_POSITION_INDEPENDENT_CODE=ON | |
| cmake --build build -j8 | |
| - name: Determine artifact suffix | |
| id: suffix | |
| run: | | |
| OS=$(uname -s | tr '[:upper:]' '[:lower:]') | |
| ARCH=$(uname -m) | |
| echo "suffix=${OS}-${ARCH}" >> "$GITHUB_OUTPUT" | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: cadiback-${{ steps.suffix.outputs.suffix }} | |
| path: cadiback/build/libcadiback.a | |
| if-no-files-found: error |