Update the Docker image version in the CircleCI config #42
This file contains 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
# Test installing PISM's dependencies using Homebrew and building PISM from sources | |
name: Dependencies using Homebrew, PISM from sources | |
on: | |
push: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macos-13, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
brew update | |
brew tap pism/pism | |
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 | |
brew install --only-dependencies pism | |
- run: cmake -B build -S . -DCMAKE_C_FLAGS="-Werror" -DCMAKE_CXX_FLAGS="-Werror" | |
- run: make -j -C build all |