-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (37 loc) · 1 KB
/
ubuntu.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
name: Ubuntu
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup vcpkg
run: |
chmod +x ./tools/install-vcpkg.sh
./tools/install-vcpkg.sh
- name: Build
run: |
chmod +x ./build.sh
./build.sh clean release
chmod +x ./build/examples/single-thing
chmod +x ./build/examples/multiple-things
chmod +x ./build/examples/gui-thing
chmod +x ./build/test/tests
- name: Integration tests
working-directory: ${{github.workspace}}/tools
run: |
chmod +x ./run-webthing-tester.sh
./run-webthing-tester.sh
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: binaries
path: |
./build/examples/single-thing
./build/examples/multiple-things
./build/examples/gui-thing
./build/test/tests