Merge branch 'main' into update/ci #153
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" | |
on: [push, workflow_dispatch] | |
env: | |
VCPKG_FEATURE_FLAGS: "registries,binarycaching,manifests,versions" | |
jobs: | |
macos12: | |
runs-on: "macos-12" | |
strategy: | |
fail-fast: false | |
matrix: | |
triplet: [x64-osx, arm64-ios] | |
env: | |
VCPKG_DOWNLOADS: "/usr/local/share/vcpkg-downloads" | |
VCPKG_DEFAULT_BINARY_CACHE: "/usr/local/share/vcpkg-archives" | |
VCPKG_OVERLAY_PORTS: "${{ github.workspace }}/ports" | |
VCPKG_OVERLAY_TRIPLETS: ${{ github.workspace }}/triplets | |
steps: | |
- uses: actions/[email protected] | |
- name: "create cache folders" | |
run: | | |
mkdir -p ${VCPKG_DOWNLOADS} | |
mkdir -p ${VCPKG_DEFAULT_BINARY_CACHE} | |
- uses: actions/[email protected] | |
with: | |
key: "v2351-${{ runner.os }}-${{ matrix.triplet }}" | |
path: | | |
/usr/local/share/vcpkg-downloads | |
/usr/local/share/vcpkg-archives | |
- uses: ConorMacBride/[email protected] | |
with: | |
brew: ninja autoconf automake libtool | |
- uses: lukka/[email protected] | |
with: | |
vcpkgDirectory: "/usr/local/share/vcpkg" # see VCPKG_INSTALLATION_ROOT | |
vcpkgGitCommitId: "a42af01b72c28a8e1d7b48107b33e4f286a55ef6" # 2023.11.20 | |
vcpkgJsonGlob: "test/vcpkg.json" | |
runVcpkgInstall: true | |
runVcpkgFormatString: '[`install`, `--clean-buildtrees-after-build`, `--clean-packages-after-build`, `--triplet`, `$[env.VCPKG_DEFAULT_TRIPLET]`]' | |
env: | |
VCPKG_DEFAULT_TRIPLET: "${{ matrix.triplet }}" |