-
Notifications
You must be signed in to change notification settings - Fork 2k
70 lines (68 loc) · 1.65 KB
/
tools-buildtest.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
name: tools-buildtest
on:
push:
branches:
- master
- staging
- trying
tags:
- '*'
pull_request:
branches:
- '*'
merge_group:
jobs:
tools-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 16
matrix:
tools: # List of tools sorted by name in alphabetical order
- name: benchmark_udp
path: dist/tools
- name: bossa-1.8
path: dist/tools
- name: bossa-1.9
path: dist/tools
- name: bossa-nrf52
path: dist/tools
- name: calc_spi_scalers
path: cpu/kinetis/dist
- name: clk_conf
path: cpu/stm32/dist
- name: edbg
path: dist/tools
- name: ethos
path: dist/tools
- name: fixdep
path: dist/tools
- name: flatc
path: dist/tools
- name: lpc2k_pgm
path: dist/tools
- name: mosquitto_rsmb
path: dist/tools
- name: riotboot_serial
path: dist/tools
- name: setsid
path: dist/tools
- name: uhcpd
path: dist/tools
- name: zep_dispatch
path: dist/tools
steps:
- uses: actions/checkout@main
- name: Build ${{ matrix.tools.name }} in ${{ matrix.tools.path }}
uses: aabadie/riot-action@main
with:
cmd: make -C ${{ matrix.tools.path }}/${{ matrix.tools.name }}
tools-build-success:
if: always()
needs: tools-build
runs-on: ubuntu-latest
steps:
- name: tools-build succeeded
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}