-
Notifications
You must be signed in to change notification settings - Fork 8
47 lines (38 loc) · 968 Bytes
/
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
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/get-conan@v1.2
- 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 all targets
run: |
cd c/build
make all
- name: Run tests
run: |
cd c
ctest
- name: Run example
run: |
cd c
./build/example