-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (36 loc) · 1.27 KB
/
linux_build.yaml
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
name: Github Linux Build
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "main" ]
jobs:
build-multiple-configurations:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure linux_threadx_debug
working-directory: ${{github.workspace}}
run: cmake --preset=linux_threadx_debug
- name: Build linux_threadx_debug
run: cmake --build --preset=linux_threadx_debug
- name: Configure linux_freertos_debug
working-directory: ${{github.workspace}}
run: cmake --preset=linux_freertos_debug
- name: Build linux_freertos_debug
run: cmake --build --preset=linux_freertos_debug
- name: Configure linux_test_debug
working-directory: ${{github.workspace}}
run: cmake --preset=linux_test_debug
- name: Build linux_test_debug
run: cmake --build --preset=linux_test_debug
- name: Configure linux_debug
working-directory: ${{github.workspace}}
run: cmake --preset=linux_debug
- name: Build linux_test
run: cmake --build --preset=linux_debug
- name: Configure linux_release
working-directory: ${{github.workspace}}
run: cmake --preset=linux_release
- name: Build linux_release
run: cmake --build --preset=linux_release