-
Notifications
You must be signed in to change notification settings - Fork 7
51 lines (42 loc) · 1.06 KB
/
c-checks.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
name: C Checks
on:
pull_request:
paths:
- ".github/workflows/c-checks.yml"
- "c/**"
jobs:
build_and_test:
name: kuliya - latest
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get Conan
uses: turtlebrowser/[email protected]
- name: Create default profile
run: conan profile detect --force
- name: Install dependencies
run: |
cd c
conan install . --output-folder=build --build=missing
- name: Set up build environment
run: |
cd c/build
sh conanbuild.sh
cmake .. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
- name: Build and run build script
run: |
cd c/build
make build
cd ..
./build/build
- name: Build and run tests
run: |
cd c/build
make test
./test
- name: Build and run example
run: |
cd c/build
make example
./example