forked from AngusJohnson/Clipper2
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (50 loc) · 1.27 KB
/
actions_release.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
name: C++
on:
push:
branches: ["main", "drecom/develop"]
pull_request:
branches: ["main", "drecom/develop"]
jobs:
windows-latest:
runs-on: 'windows-latest'
steps:
- uses: actions/checkout@v4
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Get GoogleTest
run: git submodule update --init
- name: Build
run: |
mkdir CPP/build
cd CPP/build
cmake -DBUILD_SHARED_LIBS=ON ..
cmake --build . --config Release --target Clipper2
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: windows
path: CPP/build/Release/Clipper2.dll
macos-latest:
runs-on: 'macos-latest'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Get GoogleTest
run: git submodule update --init
- name: Build
run: |
mkdir CPP/build
cd CPP/build
cmake --DCMAKE_BUILD_TYPE=Release ..
make Clipper2
ls
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: windows
path: CPP/build/libClipper2.a