-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (73 loc) · 1.73 KB
/
ci-cd-actions.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: Code Style Check & Build
on: push
jobs:
style-check:
runs-on: self-hosted
steps:
- name: Checkout code
run: |
if [ -d "c_repo" ]; then
echo "If the directory exists, delete it"
rm -rf "c_repo"
fi
git clone git@github.com:sengulhamza/c_repo.git
- name: Code Style Check:auth_with_cmac
run : |
cd c_repo/auth_with_cmac
./code-format.sh && git diff --exit-code
- name: Code Style Check:frame_oop_with_crc
run : |
cd c_repo/frame_oop_with_crc
./code-format.sh && git diff --exit-code
build_debug:
needs: style-check
runs-on: self-hosted
steps:
- name: Check gcc & cmake version
run: |
gcc --version
cmake --version
- name: Build:auth_with_cmac
run: |
cd c_repo/auth_with_cmac
mkdir build
cd build
cmake ..
make
- name: Build:frame_oop_with_crc
run: |
cd c_repo/frame_oop_with_crc
mkdir build
cd build
cmake ..
make
- name: Build:binary_tree
run: |
cd c_repo/binary_tree
mkdir build
cd build
cmake ..
make
run_debug:
needs: build_debug
runs-on: self-hosted
steps:
- name: Run:auth_with_cmac
run: |
cd c_repo/auth_with_cmac/build
./auth_with_cmac
- name: Run:frame_oop_with_crc
run: |
cd c_repo/frame_oop_with_crc/build
./frame_oop_with_crc
- name: Run:binary_tree
run: |
cd c_repo/binary_tree/build
./binary_tree
clear_cache:
needs: run_debug
runs-on: self-hosted
steps:
- name: Clear cache and disk
run : |
sudo rm -r c_repo