install build-essential #4
Workflow file for this run
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
| on: | |
| - push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install system dependencies | |
| run: sudo apt-get update && sudo apt-get install -y build-essential | |
| - name: Install toolchain | |
| run: | | |
| wget https://github.com/dinuxbg/gnupru/releases/download/2025.05/pru-elf-2025.05.amd64.tar.xz | |
| tar xJf pru-elf-2025.05.amd64.tar.xz | |
| echo "PATH=$(pwd)/pru-elf/bin" >> $GITHUB_ENV | |
| - name: Compile project | |
| run: make | |
| - name: testtesttest | |
| run: pru-objdump -xdsS pru_ledpwm.elf |