1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

.github/workflows: add tools-buildtest action

This commit is contained in:
Alexandre Abadie 2020-06-18 09:59:25 +02:00
parent 4807a91f70
commit 564033a007
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

37
.github/workflows/tools-buildtest.yml vendored Normal file
View File

@ -0,0 +1,37 @@
name: tools-buildtest
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
jobs:
tools-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build flatc standalone
uses: aabadie/riot-action@v1
with:
cmd: make -C dist/tools/flatc
- name: Build mosquitto_rsmb standalone
uses: aabadie/riot-action@v1
with:
cmd: make -C dist/tools/mosquitto_rsmb
- name: Build stm32 spi_divtable
uses: aabadie/riot-action@v1
with:
cmd: make -C cpu/stm32/dist/spi_divtable
- name: Build stm32 clk_conf
uses: aabadie/riot-action@v1
with:
cmd: make -C cpu/stm32/dist/clk_conf
- name: Build kinetis calc_spi_scalers
uses: aabadie/riot-action@v1
with:
cmd: make -C cpu/kinetis/dist/calc_spi_scalers