Skip to content

Commit

Permalink
Merge pull request #1 from andysworkshop/github-actions
Browse files Browse the repository at this point in the history
GitHub actions
  • Loading branch information
andysworkshop authored Mar 13, 2021
2 parents e1205c6 + c9fed65 commit 2d2dd16
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: release build
on: [ push, pull_request ]

jobs:
release:
name: Build the release configuration
runs-on: ubuntu-20.04
steps:
- name: Install compiler
run: |
wget -q -O /tmp/gcc.tar.bz2 https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2
tar xfj /tmp/gcc.tar.bz2 -C /tmp
- name: Checkout the source code
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Execute the Makefile
run: |
PATH=/tmp/gcc-arm-none-eabi-10-2020-q4-major/bin:$PATH make -j release
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
![Release build](https://github.com/andysworkshop/usb-microphone/actions/workflows/build.yaml/badge.svg)
# I2S USB Microphone

This repository contains the source code to the firmware for a 48kHz 16-bit USB microphone implemented using an I2S INMP441 MEMS microphone and an STM32F446.
Expand Down

0 comments on commit 2d2dd16

Please sign in to comment.