-
Notifications
You must be signed in to change notification settings - Fork 11
66 lines (64 loc) · 1.96 KB
/
macos.yml
File metadata and controls
66 lines (64 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: macos
on:
pull_request:
branches:
- develop
- master
push:
branches:
- develop
- master
jobs:
build:
env:
VCPKG_BINARY_SOURCES: 'clear;nuget,GitHub,readwrite'
strategy:
fail-fast: false
matrix:
os:
- macos-14
- macos-15
include:
- os: macos-14
preset: ci-macos-arm64
- os: macos-15
preset: ci-macos-arm64
runs-on: ${{matrix.os}}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup vcpkg
run: |
if [ -z "$VCPKG_INSTALLATION_ROOT" ] || [ ! -d "$VCPKG_INSTALLATION_ROOT" ]; then
git clone https://www.github.com/microsoft/vcpkg && cd vcpkg && ./bootstrap-vcpkg.sh
VCPKG_INSTALLATION_ROOT=${{github.workspace}}/vcpkg
echo "$VCPKG_INSTALLATION_ROOT" >> $GITHUB_PATH
echo "VCPKG_INSTALLATION_ROOT=$VCPKG_INSTALLATION_ROOT" >> "$GITHUB_ENV"
fi
- name: Add C++ Problem Matcher
uses: ammaraskar/[email protected]
- name: Install Dependencies
run: |
brew install ninja mono
- name: Setup NuGet Credentials
shell: bash
run: |
mono `vcpkg fetch nuget | tail -n 1` \
sources add \
-source "https://nuget.pkg.github.com/BlueQuartzSoftware/index.json" \
-storepasswordincleartext \
-name "GitHub" \
-username "BlueQuartzSoftware" \
-password "${{secrets.GITHUB_TOKEN}}"
mono `vcpkg fetch nuget | tail -n 1` \
setapikey "${{secrets.GITHUB_TOKEN}}" \
-source "https://nuget.pkg.github.com/BlueQuartzSoftware/index.json"
- name: Configure
run: |
cmake --preset ${{matrix.preset}} ${{github.workspace}}
- name: Build
run: |
cmake --build --preset ${{matrix.preset}}
- name: Test
run: |
ctest --preset ${{matrix.preset}}