soapy: Use the new IOCTL call on enumeration #12
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: PMC firmware build tests | |
on: | |
pull_request: | |
paths: | |
- "software/pmc/**" | |
branches: [ "v2" ] | |
push: | |
paths: | |
- "software/pmc/**" | |
branches: [ "v2" ] | |
workflow_dispatch: | |
env: | |
ARM_LIBROOT: "/opt/arm-cmsis" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update install | |
run: | |
sudo apt-get update | |
timeout-minutes: 5 | |
- name: Install toolchain | |
uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
- name: Install build dependencies | |
run: | | |
# Install armmem | |
wget https://github.com/vankxr/armmem/releases/download/1.0-1/armmem_1.0-1_amd64.deb | |
sudo dpkg -i armmem_1.0-1_amd64.deb | |
# Install Core pack | |
git clone https://github.com/vankxr/Core-CMSIS | |
cd Core-CMSIS/build | |
chmod +x build.sh | |
./build.sh | |
sudo mkdir -p $ARM_LIBROOT | |
sudo mv ARM.CMSIS.5.9.0 $ARM_LIBROOT/ARM.CMSIS | |
# Install SAMD20 pack | |
sudo mkdir -p $ARM_LIBROOT/Microchip.SAMD20_DFP | |
wget -O Microchip.SAMD20_DFP.3.6.112.zip https://packs.download.microchip.com/Microchip.SAMD20_DFP.3.6.112.pack | |
unzip Microchip.SAMD20_DFP.3.6.112.zip -d $ARM_LIBROOT/Microchip.SAMD20_DFP | |
timeout-minutes: 5 | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
clean: true | |
- name: Build PMC firmware | |
run: | | |
cd ${{github.workspace}}/software/pmc | |
make | |
- name: Upload results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pmc_firmware | |
path: ${{github.workspace}}/software/pmc/bin/v* | |
retention-days: 30 |