mirror of
https://github.com/AquaMorph/Droplets.git
synced 2025-04-29 17:35:33 +00:00
28 lines
549 B
YAML
28 lines
549 B
YAML
name: Build Binary
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: 'recursive'
|
|
- name: arm-none-eabi-gcc
|
|
uses: fiam/arm-none-eabi-gcc@v1
|
|
with:
|
|
release: '9-2019-q4'
|
|
- name: Build Libraries
|
|
run: make lib
|
|
- name: Build
|
|
run: make
|
|
- name: Archive
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: droplets.bin
|
|
path: build/droplets.bin |