Fix SQLite3 version check so it is done by find_package #4474
Workflow file for this run
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: MacOS build | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'docs/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| macos_build: | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| include: | |
| - platform: "macos-15-intel" | |
| architecture: "x64" | |
| # macOS-14 is a M1 ARM64 MacOS runner: https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/ | |
| - platform: "macOS-14" | |
| architecture: "arm64" | |
| runs-on: ${{ matrix.platform }} | |
| if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: mamba-org/setup-micromamba@v3 | |
| with: | |
| init-shell: bash | |
| environment-file: .github/workflows/mac/environment.yml | |
| - name: Cache | |
| uses: actions/cache@v5 | |
| id: cache | |
| with: | |
| path: ${{ github.workspace }}/.ccache | |
| key: ${{ runner.os }}-cache-mac-${{ matrix.architecture }}-${{ github.run_id }} | |
| restore-keys: ${{ runner.os }}-cache-mac-${{ matrix.architecture }}- | |
| - name: Install Requirements | |
| shell: bash -l {0} | |
| run: | | |
| source .github/workflows/mac/before_install.sh | |
| - name: Build | |
| shell: bash -l {0} | |
| run: | | |
| export TRAVIS_BUILD_DIR=$PWD | |
| source .github/workflows/mac/install.sh | |
| env: | |
| CCACHE_DIR: ${{ github.workspace }}/.ccache | |
| TRAVIS_OS_NAME: osx | |
| BUILD_NAME: osx |