-
-
Notifications
You must be signed in to change notification settings - Fork 2
67 lines (54 loc) · 1.61 KB
/
build_vs2022.yml
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
67
name: VS2022 build
on: push
jobs:
build:
name: VS2022
runs-on: windows-2022
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Checkout dependencies
uses: actions/checkout@v4
with:
repository: ossia/score
submodules: "recursive"
path: score
- name: Checkout Max SDK
uses: actions/checkout@v4
with:
repository: jcelerier/max-sdk-base
submodules: "recursive"
path: max-sdk-base
- name: Install dependencies
shell: bash
run: |
${{ matrix.config.dependencies }}
- name: Download SDK
shell: bash
run: |
curl -L https://raw.githubusercontent.com/ossia/score/master/tools/fetch-sdk.sh > fetch-sdk.sh
chmod +x ./fetch-sdk.sh
./fetch-sdk.sh
- name: Checkout Leap SDK
uses: actions/checkout@v4
with:
repository: celtera/LeapSDK
submodules: "recursive"
path: LeapSDK
token: ${{ secrets.GIT_CLONE_TOKEN }}
- name: Build debug
shell: bash
run: |
export BUILD_DIR=build-debug
cmake -S $PWD -B $BUILD_DIR \
-G "Visual Studio 17 2022" \
-DLEAPSDK_PATH="$PWD/LeapSDK"
cmake --build $BUILD_DIR --config Debug
- name: Build release
shell: bash
run: |
export BUILD_DIR=build-release
cmake -S $PWD -B $BUILD_DIR \
-G "Visual Studio 17 2022" \
-DLEAPSDK_PATH="$PWD/LeapSDK"
cmake --build $BUILD_DIR --config Release