Add ARK 4IN1 #247
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Build Linux | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Build CI | |
run: | | |
make arm_sdk_install | |
make -j8 | |
- name: Archive build | |
uses: actions/upload-artifact@v3 | |
with: | |
name: AM32-binaries | |
path: | | |
obj/*.hex | |
retention-days: 7 |