-
-
Notifications
You must be signed in to change notification settings - Fork 4
51 lines (42 loc) · 1.28 KB
/
linux.yaml
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
name: Linux
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Vcpkg
uses: lukka/run-vcpkg@v11
with:
vcpkgGitCommitId: 4a600e9fea71bd7872080cbb716797e04d30e6d3
- name: Build
run: |
mkdir build && cd build
cmake .. --preset linux -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_TESTING=True
cmake --build . --config ${{env.BUILD_TYPE}}
- name: Artifact
uses: actions/upload-artifact@v4
with:
name: build-artifact
path: build
tests:
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Artifact
uses: actions/download-artifact@v4
with:
name: build-artifact
path: build
- name: Tests
run: |
ctest -C ${{env.BUILD_TYPE}}