More #3234
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| name: [linux-x86_64, linux-arm64, macOS-x86_64, macOS-arm64, windows-x86_64, windows-arm64] | |
| build-type: [ release, debug ] | |
| include: | |
| - name: linux-x86_64 | |
| os: ubuntu-22.04 | |
| shell: bash | |
| - name: linux-arm64 | |
| os: ubuntu-22.04-arm | |
| shell: bash | |
| - name: macOS-x86_64 | |
| os: macos-15-intel | |
| bottle-suffix: monterey | |
| gmp-sha256: b04023f65b8c79c45798a4bfd97fdbeb10f1bf9e8416e22e8eeedbd9b2a8c102 | |
| shell: bash | |
| - name: macOS-arm64 | |
| os: macos-15 | |
| bottle-suffix: arm64_monterey | |
| gmp-sha256: 2115b33b8b4052f91ffb85e476c7fc0388cf4e614af1ce6453b35e6d25473911 | |
| shell: bash | |
| - name: windows-x86_64 | |
| os: windows-latest | |
| shell: 'msys2 {0}' | |
| - name: windows-arm64 | |
| os: windows-11-arm | |
| shell: 'msys2 {0}' | |
| defaults: | |
| run: | |
| shell: ${{ matrix.shell }} | |
| name: ${{ matrix.name }}:${{ matrix.build-type }} | |
| # The type of runner that the job will run on | |
| runs-on: ${{ matrix.os }} | |
| # cancel already running jobs for the same branch/pr/tag | |
| concurrency: | |
| group: build-${{ github.ref }}-${{ matrix.name }}:${{ matrix.build-type }}-${{ github.ref != 'refs/heads/main' || github.run_id }} | |
| cancel-in-progress: ${{ github.repository != 'cvc5/ethos' || startsWith(github.ref, 'refs/pull/') }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Set MACOSX_DEPLOYMENT_TARGET | |
| if: runner.os == 'macOS' | |
| run: echo "MACOSX_DEPLOYMENT_TARGET=12.0" >> $GITHUB_ENV | |
| - name: Install Packages (macOS) | |
| if: runner.os == 'macOS' | |
| env: | |
| HOMEBREW_DEVELOPER: 1 # Required by Brew >= 4.6.4. See https://github.com/Homebrew/brew/pull/20414 | |
| run: | | |
| # Install GMP 6.3.0 bottle for macOS 12.0 (monterey) | |
| # Ensure compatibility with older versions of macOS | |
| GMP_BOTTLE=gmp-6.3.0.${{ matrix.bottle-suffix }}.bottle.tar.gz | |
| curl -L -H "Authorization: Bearer QQ==" -o $GMP_BOTTLE \ | |
| https://ghcr.io/v2/homebrew/core/gmp/blobs/sha256:${{ matrix.gmp-sha256 }} | |
| brew reinstall -f $GMP_BOTTLE | |
| - name: Install Packages (Linux) | |
| if: runner.os == 'Linux' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| libgmp-dev | |
| - name: Install Packages (Windows x86_64) | |
| uses: msys2/setup-msys2@v2 | |
| if: runner.os == 'Windows' && runner.arch == 'X64' | |
| with: | |
| msystem: MINGW64 | |
| path-type: inherit | |
| install: | | |
| make | |
| mingw-w64-x86_64-cmake | |
| mingw-w64-x86_64-gcc | |
| mingw-w64-x86_64-gmp | |
| - name: Install Packages (Windows arm64) | |
| uses: msys2/setup-msys2@v2 | |
| if: runner.os == 'Windows' && runner.arch == 'ARM64' | |
| with: | |
| msystem: CLANGARM64 | |
| path-type: inherit | |
| install: | | |
| make | |
| mingw-w64-clang-aarch64-cmake | |
| mingw-w64-clang-aarch64-clang | |
| mingw-w64-clang-aarch64-gmp | |
| - name: Set up num_proc variable | |
| run: | | |
| if [ "${{ runner.os }}" = "macOS" ]; then | |
| echo "num_proc=$(( $(sysctl -n hw.logicalcpu) + 1 ))" >> $GITHUB_ENV | |
| else | |
| echo "num_proc=$(( $(nproc) + 1 ))" >> $GITHUB_ENV | |
| fi | |
| - name: Build | |
| run: | | |
| ./configure.sh ${{ matrix.build-type }} --static --werror | |
| cd build | |
| make -j${{ env.num_proc }} | |
| - name: Test | |
| run: ctest -j${{ env.num_proc }} --output-on-failure | |
| working-directory: build | |
| - name: Upload artifact | |
| if: | | |
| github.event_name == 'push' && | |
| github.ref == 'refs/heads/main' && | |
| matrix.build-type == 'release' | |
| uses: ./.github/actions/upload-artifact | |
| with: | |
| binary-dir: build/src | |
| shell: ${{ matrix.shell }} |