-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (85 loc) · 2.41 KB
/
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
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: Build
on: [push]
jobs:
arm-bemos-linux-musleabihf:
runs-on: ubuntu-latest
container: ghcr.io/bestsens/musl-build-image:latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup cache
uses: actions/cache@v4
continue-on-error: false
with:
path: |
build/
key: ${{ runner.os }}-arm
restore-keys: ${{ runner.os }}-arm
- name: Build
env:
CCACHE_DIR: .cache/ccache
run: |
mkdir -p build
cd build
cmake .. -GNinja \
-DGIT_BRANCH=${{ github.head_ref }} \
-DGIT_COMMIT_HASH=${{ github.sha }} \
-DCPM_SOURCE_CACHE=../.cache/CPM \
-DBUILD_TESTS=OFF \
-DCMAKE_TOOLCHAIN_FILE=../libs/bone_helper/cmake/arm-bemos-linux-musleabihf.cmake
samu
- name: Clean up hierachy
run: |
cp LICENSE build/LICENSE
cp README.md build/README.md
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: armv7
path: |
build/bemos_modbus
build/bemos_modbus.dbg
build/LICENSE
build/README.md
x86_64-linux-gnu:
runs-on: ubuntu-latest
container: ghcr.io/bestsens/fedora-build-image:latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup cache
uses: actions/cache@v4
continue-on-error: false
with:
path: |
build/
key: ${{ runner.os }}-linux
restore-keys: ${{ runner.os }}-linux
- name: Build
env:
CCACHE_DIR: .cache/ccache
run: |
mkdir -p build
cd build
cmake .. -GNinja \
-DGIT_BRANCH=${{ github.head_ref }} \
-DGIT_COMMIT_HASH=${{ github.sha }} \
-DCPM_SOURCE_CACHE=../.cache/CPM
samu
- name: Clean up hierachy
run: |
cp LICENSE build/LICENSE
cp README.md build/README.md
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: x86_64
path: |
build/bemos_modbus
build/bemos_modbus.dbg
build/LICENSE
build/README.md