Skip to content

Commit

Permalink
Merge pull request RIOT-OS#4 from Mesh4all/type/CI
Browse files Browse the repository at this point in the history
Create compilation_check.yml
  • Loading branch information
luisan00 authored Sep 10, 2021
2 parents 5bdb97f + 373d573 commit f19d652
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/compilation_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Compile test

on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install toolchain
run: |
wget "https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2"
tar xvf gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2
echo "$PWD/gcc-arm-none-eabi-9-2019-q4-major/bin" >> $GITHUB_PATH
- name: Build the application
run: make -C firmware BOARD=m4a-mb

0 comments on commit f19d652

Please sign in to comment.