Skip to content
This repository has been archived by the owner on Sep 20, 2022. It is now read-only.

Commit

Permalink
.github/workflow : Added compile tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaim committed Sep 6, 2022
1 parent 4661976 commit eb1126e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflow/compile-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Compilation tests for application

on:
push:
branches: [ master]
pull_request:
types: [opened, edited, reopened, synchronize]
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: arm-none-eabi-gcc
uses: fiam/arm-none-eabi-gcc@v1
with:
release: '10-2020-q4' # The arm-none-eabi-gcc release to use.
- name: Compile Test - coap chat
run: make -C coap-chat BOARD=samr21-xpro
- name: Compile Test - sniffer
run: make -C sniffer BOARD=samr21-xpro
- name: Compile Test - spectrum scanner
run: make -C spectrum-scanner

0 comments on commit eb1126e

Please sign in to comment.