From 564033a007a04627b3bb43cb4db0ce95f1f01148 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Thu, 18 Jun 2020 09:59:25 +0200 Subject: [PATCH] .github/workflows: add tools-buildtest action --- .github/workflows/tools-buildtest.yml | 37 +++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/tools-buildtest.yml diff --git a/.github/workflows/tools-buildtest.yml b/.github/workflows/tools-buildtest.yml new file mode 100644 index 0000000000..edc6062493 --- /dev/null +++ b/.github/workflows/tools-buildtest.yml @@ -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