Update CI workflow to begin saving build artifacts #27
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: NQC CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
steps: | |
- name: Get the latest from version control | |
uses: actions/checkout@v4 | |
- name: Update build environment | |
run: sudo apt-get --assume-yes update | |
- name: Install build dependencies | |
run: sudo apt-get --assume-yes install flex bison emscripten | |
- name: Execute the build | |
run: make DEFAULT_SERIAL_NAME='"/dev/ttyS0"' DEFAULT_USB_NAME='"/dev/usb/legousbtower0"' DEFAULT_PORT_NAME='"usb"' | |
- name: Archive native build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nqc-${{ matrix.os }}-native | |
path: build/bin/ | |
- name: Archive WebAssembly build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nqc-WebAssembly-${{ matrix.os }} | |
path: build/wasm/ |