Migrate Docker CI from ADO to Github, remove ADO pipelines (#2422) #1
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
name: COLMAP (Mac) | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [ assigned, opened, synchronize, reopened ] | |
release: | |
types: [ published, edited ] | |
jobs: | |
build: | |
name: ${{ matrix.config.os }} ${{ matrix.config.arch }} ${{ matrix.config.cmakeBuildType }} | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
matrix: | |
config: [ | |
{ | |
os: macos-13, | |
arch: x86_64, | |
cmakeBuildType: Release, | |
}, | |
] | |
env: | |
COMPILER_CACHE_VERSION: 1 | |
COMPILER_CACHE_DIR: ${{ github.workspace }}/compiler-cache | |
CCACHE_DIR: ${{ github.workspace }}/compiler-cache/ccache | |
CCACHE_BASEDIR: ${{ github.workspace }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
id: cache-builds | |
with: | |
key: v${{ env.COMPILER_CACHE_VERSION }}-${{ matrix.config.os }}-${{ matrix.config.arch }}-${{ matrix.config.cmakeBuildType }}-${{ github.run_id }}-${{ github.run_number }} | |
restore-keys: v${{ env.COMPILER_CACHE_VERSION }}-${{ matrix.config.os }}-${{ matrix.config.arch }}-${{ matrix.config.cmakeBuildType }} | |
path: ${{ env.COMPILER_CACHE_DIR }} | |
- name: Setup Mac | |
run: | | |
rm -f '/usr/local/bin/2to3*' # Fix `brew link` error. | |
brew install \ | |
cmake \ | |
ninja \ | |
boost \ | |
eigen \ | |
flann \ | |
freeimage \ | |
metis \ | |
glog \ | |
googletest \ | |
ceres-solver \ | |
qt5 \ | |
glew \ | |
cgal \ | |
sqlite3 \ | |
ccache | |
- name: Configure and build | |
run: | | |
export PATH="/usr/local/opt/qt@5/bin:$PATH" | |
cmake --version | |
mkdir build | |
cd build | |
cmake .. \ | |
-GNinja \ | |
-DCMAKE_BUILD_TYPE=${{ matrix.config.cmakeBuildType }} \ | |
-DTESTS_ENABLED=ON \ | |
-DQt5_DIR=/usr/local/opt/qt/lib/cmake/Qt5 | |
ninja | |
- name: Run tests | |
run: | | |
cd build | |
ctest | |
tests_pass=$? | |
if [ $tests_pass -ne 0 ]; then | |
echo "\n\n\nTests failed, rerunning with verbose output" | |
ctest --rerun-failed --output-on-failure | |
fi | |
exit $tests_pass | |
- name: Cleanup compiler cache | |
run: | | |
set -x | |
ccache --show-stats --verbose | |
ccache --evict-older-than 1d | |
ccache --show-stats --verbose |