-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (31 loc) · 1012 Bytes
/
ci.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
name: ci
on: [push]
jobs:
run-ci-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
-
name: setup-env
run: |
cd ~
sudo chmod +x ${{github.workspace}}/scripts/install-ubuntu.sh
${{github.workspace}}/scripts/install-ubuntu.sh
-
name: build
run: |
cd ${{github.workspace}}
mkdir build
cmake -B ./build -S ./ -G "Unix Makefiles" --toolchain ~/vcpkg/scripts/buildsystems/vcpkg.cmake
cd build
make
-
name: test
run: |
cd ${{github.workspace}}
cd build
./bin/LepusUtility_Tests
./bin/LepusSystem_Tests
./bin/LepusGfx_Tests