[gdal] 3.9.2 #722
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: CI-osx | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Bootstrap the ports on OSX | |
run: | | |
brew install nasm ninja automake autoconf autoconf-archive | |
python3 scripts/buildtools/vcpkg.py --triplet x64-osx --ports-dir . --clean-after-build | |
- name: Archive build logs | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-logs | |
path: | | |
buildtrees/**/*config*.log | |
buildtrees/**/*build*.log | |
buildtrees/**/*install*.log | |
buildtrees/**/package*.log |