RPN v2.0.0 — symbolic stack with 2D rendering #30
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: [main] | |
| tags: ['v*'] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install ARM toolchain | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y gcc-arm-none-eabi | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Run host engine tests | |
| run: make test | |
| - name: Build device app (.nwa) | |
| run: make | |
| - name: Upload nwa artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: rpn-nwa | |
| path: output/rpn.nwa | |
| if-no-files-found: error |