WIP: fix CI. #6
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: macOS | |
env: | |
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" | |
on: | |
push: | |
paths: | |
- '**' | |
- '!README.md' | |
- '!LICENSE.txt' | |
- '!doc/**' | |
- '!.github/workflows/*.yml' | |
- '.github/workflows/macos.yml' | |
jobs: | |
build: | |
runs-on: macOS-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Vulkan SDK | |
uses: humbletim/setup-vulkan-sdk@v1.2.0 | |
with: | |
vulkan-query-version: latest | |
vulkan-components: Vulkan-Headers, Vulkan-Loader | |
vulkan-use-cache: true | |
- name: Install Ninja | |
run: brew install ninja | |
- name: Install vcpkg | |
run: | | |
git clone https://github.com/microsoft/vcpkg.git | |
cd vcpkg && ./bootstrap-vcpkg.sh | |
echo "VCPKG_ROOT=${{ github.workspace }}/vcpkg" >> $GITHUB_ENV | |
- name: Export GitHub Actions cache environment variables | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
- name: Configure | |
run: | | |
mv .github/workflows/scripts/* . | |
cmake --preset=macos-clang-18 | |
- name: Show error if CMake configuration failed | |
if: failure() | |
run: | | |
cat vcpkg/buildtrees/detect_compiler/config-arm64-osx-clang-rel-CMakeCache.txt.log | |
cat vcpkg/buildtrees/detect_compiler/config-arm64-osx-clang-rel-out.log | |
cat vcpkg/buildtrees/detect_compiler/config-arm64-osx-clang-rel-err.log | |
- name: Build | |
run: cmake --build build --config release |