2020-08-31 20:12:18 +00:00
|
|
|
name: 'CI'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
2020-09-27 23:36:32 +00:00
|
|
|
paths-ignore:
|
|
|
|
- 'wiki/**'
|
|
|
|
- 'wiki_static/**'
|
2020-08-31 20:12:18 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
2020-10-07 09:37:43 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
2020-09-17 08:06:25 +00:00
|
|
|
- uses: satackey/action-docker-layer-caching@v0.0.8
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
2020-09-17 09:11:06 +00:00
|
|
|
key: docker-cache-${{ hashFiles('docker/**') }}-{hash}
|
|
|
|
restore-keys: docker-cache-${{ hashFiles('docker/**') }}-
|
2020-08-31 20:12:18 +00:00
|
|
|
- name: Build docker image
|
|
|
|
uses: ./.github/actions/docker
|
|
|
|
|
2020-09-29 23:18:30 +00:00
|
|
|
- name: Check syntax
|
|
|
|
uses: ./.github/actions/docker
|
2020-10-15 16:50:21 +00:00
|
|
|
continue-on-error: false
|
2020-09-29 23:18:30 +00:00
|
|
|
with:
|
|
|
|
run: /syntax_check.sh
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
- name: Build F2 bootloader in docker
|
2020-08-31 20:12:18 +00:00
|
|
|
uses: ./.github/actions/docker
|
|
|
|
with:
|
2020-10-07 09:37:43 +00:00
|
|
|
run: make -C bootloader TARGET=f2
|
2020-09-29 12:40:47 +00:00
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
- name: Publish F2 bootloader artifacts
|
2020-09-29 12:40:47 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-10-07 09:37:43 +00:00
|
|
|
name: bootloader_f2
|
2020-09-29 12:40:47 +00:00
|
|
|
path: |
|
2020-10-07 09:37:43 +00:00
|
|
|
bootloader/.obj/f2/bootloader.elf
|
|
|
|
bootloader/.obj/f2/bootloader.bin
|
|
|
|
bootloader/.obj/f2/bootloader.hex
|
2020-09-29 12:40:47 +00:00
|
|
|
if-no-files-found: error
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
- name: Build local testing firmware in docker
|
2020-09-29 12:40:47 +00:00
|
|
|
uses: ./.github/actions/docker
|
|
|
|
with:
|
2020-10-07 09:37:43 +00:00
|
|
|
run: make -C firmware TARGET=local
|
2020-09-30 23:05:04 +00:00
|
|
|
|
2020-10-10 10:32:06 +00:00
|
|
|
- name: Run local tests
|
|
|
|
uses: ./.github/actions/docker
|
|
|
|
with:
|
|
|
|
run: make -C firmware TARGET=local APP_TEST=1 run
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
- name: Build F2 firmware in docker
|
2020-09-30 23:05:04 +00:00
|
|
|
uses: ./.github/actions/docker
|
|
|
|
with:
|
2020-10-19 06:56:12 +00:00
|
|
|
run: make -C firmware TARGET=f2 APP_RELEASE=1
|
2020-09-30 23:05:04 +00:00
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
- name: Publish F2 firmware artifacts
|
2020-09-30 23:05:04 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-10-07 09:37:43 +00:00
|
|
|
name: firmware_f2
|
2020-09-30 23:05:04 +00:00
|
|
|
path: |
|
2020-10-07 09:37:43 +00:00
|
|
|
firmware/.obj/f2/firmware.elf
|
|
|
|
firmware/.obj/f2/firmware.bin
|
|
|
|
firmware/.obj/f2/firmware.hex
|
2020-09-30 23:05:04 +00:00
|
|
|
if-no-files-found: error
|