usb4: confirm E764 trains to 0x19 (cdc6 fix verified on HW) #450
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: Build firmware | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Install toolchain | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y sdcc make python3 | |
| - name: Build firmware | |
| run: | | |
| make clean | |
| make | |
| make wrapped | |
| - name: Archive firmware artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: asm2464pd-firmware | |
| path: | | |
| build/firmware.bin | |
| build/firmware_wrapped.bin |