-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (29 loc) · 934 Bytes
/
riot.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
name: "Platform: RIOT"
on:
pull_request:
jobs:
ci:
name: Build examples and run tests
runs-on: ubuntu-24.04
container:
image: riot/riotbuild:latest
options: --privileged --network host
env:
RIOT_COMMIT_ID: "cb5500b4b7600d95f42a3070abae402be4f63845"
RIOTBASE: "/opt/riot-cb5500b4b7600d95f42a3070abae402be4f63845"
REACTOR_UC_PATH: ${{ github.workspace }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install RIOT dependencies
uses: ./.github/actions/riot
- name: Install LFC dependencies
uses: ./.github/actions/lingua-franca
- name: Run platform tests
working-directory: ${{ github.workspace }}/test/platform/riot
run: ./runAll.sh
- name: Build examples
working-directory: ${{ github.workspace }}/examples/riot
run: ./buildAll.sh