tinyusb/.github/workflows/build_arm.yml

227 lines
6.5 KiB
YAML
Raw Normal View History

name: Build ARM
2019-12-27 16:34:25 +07:00
2021-01-26 22:34:29 +07:00
on:
pull_request:
push:
release:
types:
- created
2019-12-27 16:34:25 +07:00
jobs:
2021-03-04 20:22:16 +07:00
# ---------------------------------------
# Unit testing with Ceedling
2021-03-04 20:22:16 +07:00
# ---------------------------------------
2019-12-27 20:58:37 +07:00
unit-test:
2020-04-18 15:38:33 +07:00
runs-on: ubuntu-latest
2019-12-27 20:58:37 +07:00
steps:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
2021-01-29 11:30:15 +07:00
with:
ruby-version: '2.7'
2020-10-01 13:37:54 -05:00
2019-12-27 20:58:37 +07:00
- name: Checkout TinyUSB
2022-04-24 16:49:29 +01:00
uses: actions/checkout@v3
2019-12-27 20:58:37 +07:00
- name: Unit Tests
run: |
# Install Ceedling
gem install ceedling
cd test
ceedling test:all
# ---------------------------------------
# Build ARM family
# ---------------------------------------
build-arm:
2021-01-23 18:32:56 +07:00
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
family:
2021-01-26 22:34:29 +07:00
# Alphabetical order
2022-01-05 14:11:39 -08:00
- 'broadcom_32bit'
2021-01-23 18:32:56 +07:00
- 'imxrt'
2021-04-28 15:16:36 +07:00
- 'lpc15'
- 'lpc18'
2021-04-28 23:27:12 +07:00
- 'lpc54'
2021-03-01 12:35:17 +07:00
- 'lpc55'
- 'mm32'
- 'msp432e4'
2021-01-23 18:32:56 +07:00
- 'nrf'
2021-01-24 01:28:56 +07:00
- 'rp2040'
2021-02-04 14:17:51 +07:00
- 'samd11'
2021-01-23 18:32:56 +07:00
- 'samd21'
- 'samd51'
2021-06-28 14:37:41 +07:00
- 'saml2x'
2021-04-18 15:44:50 +07:00
- 'stm32f0'
2021-08-19 18:54:53 +07:00
- 'stm32f1'
2021-01-23 18:32:56 +07:00
- 'stm32f4'
- 'stm32f7'
- 'stm32g4'
2021-03-03 20:22:55 +07:00
- 'stm32h7'
2021-11-02 16:20:39 +07:00
- 'stm32l4'
- 'stm32wb'
- 'tm4c123'
2021-11-05 13:23:31 +07:00
- 'xmc4000'
2021-01-23 18:32:56 +07:00
steps:
- name: Setup Python
2022-11-06 15:17:00 +07:00
uses: actions/setup-python@v4
with:
python-version: '3.x'
2021-01-23 18:32:56 +07:00
- name: Install ARM GCC
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '11.2-2022.02'
2021-01-23 18:32:56 +07:00
- name: Checkout TinyUSB
2022-04-24 16:49:29 +01:00
uses: actions/checkout@v3
2021-01-23 18:32:56 +07:00
2021-03-05 22:24:03 +07:00
- name: Checkout common submodules in lib
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip lib/sct_neopixel
2021-01-23 18:32:56 +07:00
- name: Checkout hathach/linkermap
2022-04-24 16:49:29 +01:00
uses: actions/checkout@v3
with:
repository: hathach/linkermap
path: linkermap
2022-06-29 14:07:00 +07:00
- name: Checkout pico-sdk for rp2040
2021-04-11 13:45:55 +07:00
if: matrix.family == 'rp2040'
run: |
2021-06-03 01:16:27 +07:00
git clone --depth 1 -b develop https://github.com/raspberrypi/pico-sdk ~/pico-sdk
echo >> $GITHUB_ENV PICO_SDK_PATH=~/pico-sdk
- name: Get Dependencies
2022-07-01 17:23:14 +07:00
run: python3 tools/get_dependencies.py ${{ matrix.family }}
2021-03-04 20:22:16 +07:00
2021-01-23 18:32:56 +07:00
- name: Build
run: python3 tools/build_family.py ${{ matrix.family }}
- name: Linker Map
run: |
pip install linkermap/
2022-11-06 14:56:05 +07:00
# find -quit to only print linkermap of 1 board per example
for ex in `ls -d examples/*/*/`
do
find ${ex} -name *.map -print -quit | xargs -I % sh -c 'echo "::group::%"; linkermap -v %; echo "::endgroup::"'
done
2022-07-23 18:39:22 +07:00
# Following steps are for Hardware Test with self-hosted
- name: Prepare Artifacts
2022-07-29 11:32:17 +07:00
if: matrix.family == 'rp2040' && github.repository_owner == 'hathach'
2022-07-23 18:39:22 +07:00
run: find examples/ -name "*.elf" -exec mv {} . \;
- name: Upload Artifacts for Hardware Test
2022-07-29 11:32:17 +07:00
if: matrix.family == 'rp2040' && github.repository_owner == 'hathach'
2022-07-23 18:39:22 +07:00
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.family }}
path: |
*.elf
# ---------------------------------------
2022-01-05 14:11:39 -08:00
# Build all no-family (orphaned) boards
# disable this workflow since it is often failed randomly
# ---------------------------------------
build-board:
2021-03-01 21:45:48 +07:00
runs-on: ubuntu-latest
if: false
2021-03-01 21:45:48 +07:00
strategy:
fail-fast: false
matrix:
example:
# Alphabetical order, a group of 4
- 'device/audio_test device/board_test device/cdc_dual_ports device/cdc_msc'
- 'device/cdc_msc_freertos device/dfu_runtime device/hid_composite device/hid_composite_freertos'
- 'device/hid_generic_inout device/hid_multiple_interface device/midi_test device/msc_dual_lun'
- 'device/net_lwip_webserver'
- 'device/uac2_headset device/usbtmc device/webusb_serial host/cdc_msc_hid'
2021-03-01 21:45:48 +07:00
steps:
- name: Setup Python
2022-11-06 22:33:55 +07:00
uses: actions/setup-python@v4
with:
python-version: '3.x'
2021-03-01 21:45:48 +07:00
2022-07-01 17:23:14 +07:00
- name: Install ARM GCC
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '11.2-2022.02'
2021-03-01 21:45:48 +07:00
- name: Checkout TinyUSB
2022-04-24 16:49:29 +01:00
uses: actions/checkout@v3
2021-03-05 22:24:03 +07:00
- name: Checkout common submodules in lib
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
2021-03-01 21:45:48 +07:00
- name: Build
run: python3 tools/build_board.py ${{ matrix.example }}
2022-11-06 22:33:55 +07:00
# ---------------------------------------
# Hardware in the loop (HIL)
# Current self-hosted instance is running on an RPI4 with
# - pico + pico-probe connected via USB
# - pico-probe is /dev/ttyACM0
# ---------------------------------------
hw-rp2040-test:
2022-11-06 22:33:55 +07:00
# Limit the run to only hathach due to limited resource on RPI4
if: github.repository_owner == 'hathach'
needs: build-arm
runs-on: [self-hosted, Linux, ARM64, rp2040]
2022-11-06 22:33:55 +07:00
steps:
- name: Clean workspace
run: |
echo "Cleaning up previous run"
rm -rf "${{ github.workspace }}"
mkdir -p "${{ github.workspace }}"
- name: Download rp2040 Artifacts
uses: actions/download-artifact@v3
with:
name: rp2040
- name: Create flash.sh
run: |
echo > flash.sh 'cmdout=$(openocd -f "interface/picoprobe.cfg" -f "target/rp2040.cfg" -c "program $1 reset exit")'
echo >> flash.sh 'if (( $? )) ; then echo $cmdout ; fi'
2022-11-06 22:33:55 +07:00
chmod +x flash.sh
- name: Test cdc_dual_ports
run: |
./flash.sh cdc_dual_ports.elf
while (! ([ -e /dev/ttyACM1 ] && [ -e /dev/ttyACM2 ])) && [ $SECONDS -le 5 ]; do :; done
test -e /dev/ttyACM1 && echo "ttyACM1 exists"
test -e /dev/ttyACM2 && echo "ttyACM2 exists"
- name: Test cdc_msc
run: |
./flash.sh cdc_msc.elf
readme='/media/pi/TinyUSB MSC/README.TXT'
while (! ([ -e /dev/ttyACM1 ] && [ -f "$readme" ])) && [ $SECONDS -le 5 ]; do :; done
test -e /dev/ttyACM1 && echo "ttyACM1 exists"
test -f "$readme" && echo "$readme exists"
cat "$readme"
- name: Test dfu
run: |
./flash.sh dfu.elf
while (! (dfu-util -l | grep "Found DFU")) && [ $SECONDS -le 5 ]; do :; done
dfu-util -d cafe -a 0 -U dfu0
dfu-util -d cafe -a 1 -U dfu1
grep "TinyUSB DFU! - Partition 0" dfu0
grep "TinyUSB DFU! - Partition 1" dfu1
- name: Test dfu_runtime
run: |
./flash.sh dfu_runtime.elf
while (! (dfu-util -l | grep "Found Runtime")) && [ $SECONDS -le 5 ]; do :; done
# - name: Test hid_boot_interface
# run: |
# ./flash.sh hid_boot_interface.elf
# while (! (dfu-util -l | grep "Found Runtime")) && [ $SECONDS -le 5 ]; do :; done