-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (61 loc) · 1.48 KB
/
build.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
68
69
70
71
72
73
name: Build
on:
workflow_dispatch:
push:
paths-ignore:
- 'doc/**'
- 'examples/**'
- '.vscode/**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up CMake
uses: jwlawson/actions-setup-cmake@v1.14
with:
cmake-version: 3.21.3
- name: Configure
run: cmake -S . -B build
- name: Build
run: cmake --build build
- name: deploy pre-cleanup
uses: JesseTG/rm@v1.0.3
with:
path: src
- name: deploy pre-cleanup
uses: JesseTG/rm@v1.0.3
with:
path: examples
- name: deploy pre-cleanup
uses: JesseTG/rm@v1.0.3
with:
path: .github
- name: deploy pre-cleanup
uses: JesseTG/rm@v1.0.3
with:
path: .vscode
- name: Deploy
if: matrix.os == 'ubuntu-latest'
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: binaries
FOLDER: build/build/
SQUASH_HISTORY: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy
if: matrix.os == 'windows-latest'
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: binaries
FOLDER: build/build/
SQUASH_HISTORY: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}