Changed submodules to reference HTTPS access rather than SSH #48
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: Build | |
on: | |
pull_request: | |
push: | |
branches-ignore: | |
- gh-pages | |
env: | |
COLOR: BLUE | |
jobs: | |
build: | |
container: | |
image: ghcr.io/armmbed/mbed-os-env:latest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Compile movement firmware | |
run: make | |
working-directory: '.' | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: movement.uf2 | |
path: build/firmware.uf2 | |
build-simulator: | |
container: | |
image: emscripten/emsdk | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Compile movement | |
run: emmake make | |
working-directory: '.' | |
- name: Archive simulator build | |
working-directory: 'movement/make/build-sim' | |
run: | | |
tar -czf movement.tar.gz index.html firmware.wasm firmware.js | |
- name: Upload simulator build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: movement.tar.gz | |
path: build-sim/movement.tar.gz |