2021-05-26 17:12:26 +07:00
|
|
|
name: Build ARM
|
2019-12-27 16:34:25 +07:00
|
|
|
|
2021-01-26 22:34:29 +07:00
|
|
|
on:
|
|
|
|
push:
|
2022-12-08 09:30:42 +07:00
|
|
|
paths:
|
2022-12-08 11:47:01 +07:00
|
|
|
- 'src/**'
|
|
|
|
- 'examples/**'
|
|
|
|
- 'lib/**'
|
|
|
|
- 'hw/**'
|
2023-02-01 15:14:35 +07:00
|
|
|
- '.github/workflows/build_arm.yml'
|
2022-12-08 09:30:42 +07:00
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2022-12-08 09:44:26 +07:00
|
|
|
paths:
|
2022-12-08 11:47:01 +07:00
|
|
|
- 'src/**'
|
|
|
|
- 'examples/**'
|
|
|
|
- 'lib/**'
|
|
|
|
- 'hw/**'
|
2023-02-01 15:14:35 +07:00
|
|
|
- '.github/workflows/build_arm.yml'
|
2019-12-27 20:58:37 +07:00
|
|
|
|
2022-12-04 20:29:24 +07:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
2019-12-27 20:58:37 +07:00
|
|
|
|
2019-12-27 16:34:25 +07:00
|
|
|
jobs:
|
2021-03-02 12:24:12 +07:00
|
|
|
# ---------------------------------------
|
|
|
|
# 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'
|
2023-03-18 20:19:37 +07:00
|
|
|
- 'kinetis_k32 kinetis_kl'
|
2023-03-19 17:26:49 +07:00
|
|
|
- 'lpc11 lpc13 lpc15 lpc18'
|
2023-03-08 12:28:30 +07:00
|
|
|
- 'lpc54 lpc55'
|
|
|
|
- 'mm32 msp432e4'
|
2021-01-23 18:32:56 +07:00
|
|
|
- 'nrf'
|
2022-03-09 12:58:15 +00:00
|
|
|
- 'ra'
|
2021-01-24 01:28:56 +07:00
|
|
|
- 'rp2040'
|
2023-03-19 13:11:41 +07:00
|
|
|
- 'samd11 samd21'
|
|
|
|
- 'samd51 same5x'
|
2021-06-28 14:37:41 +07:00
|
|
|
- 'saml2x'
|
2023-03-19 13:11:41 +07:00
|
|
|
- 'stm32f0 stm32f1 stm32f2 stm32f3'
|
2021-01-23 18:32:56 +07:00
|
|
|
- 'stm32f4'
|
|
|
|
- 'stm32f7'
|
2023-03-19 12:47:05 +07:00
|
|
|
- 'stm32g4 stm32h7'
|
|
|
|
- 'stm32l0 stm32l4 stm32u5 stm32wb'
|
2023-03-08 12:28:30 +07:00
|
|
|
- 'tm4c123 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
|
2022-11-06 22:06:22 +07:00
|
|
|
with:
|
|
|
|
python-version: '3.x'
|
2021-01-23 18:32:56 +07:00
|
|
|
|
2022-07-01 16:24:58 +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-10-13 00:57:45 +07:00
|
|
|
- name: Checkout hathach/linkermap
|
2022-04-24 16:49:29 +01:00
|
|
|
uses: actions/checkout@v3
|
2021-10-13 00:57:45 +07:00
|
|
|
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'
|
2021-04-11 13:37:07 +07:00
|
|
|
run: |
|
2021-06-03 01:16:27 +07:00
|
|
|
git clone --depth 1 -b develop https://github.com/raspberrypi/pico-sdk ~/pico-sdk
|
2021-04-11 13:37:07 +07:00
|
|
|
echo >> $GITHUB_ENV PICO_SDK_PATH=~/pico-sdk
|
2021-03-04 20:22:16 +07:00
|
|
|
|
2022-07-01 16:24:58 +07:00
|
|
|
- name: Get Dependencies
|
2023-03-10 20:49:11 +07:00
|
|
|
run: python3 tools/get_family_deps.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 }}
|
|
|
|
|
2021-10-13 00:57:45 +07:00
|
|
|
- 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::"'
|
2021-10-13 00:57:45 +07:00
|
|
|
done
|
|
|
|
|
2023-03-08 12:15:39 +07:00
|
|
|
# Upload binaries for rp2040/stm32l412nucleo hardware test with self-hosted
|
2023-03-08 12:28:30 +07:00
|
|
|
|
2023-02-01 15:14:35 +07:00
|
|
|
- name: Prepare rp2040 Artifacts
|
2023-03-19 16:43:59 +07:00
|
|
|
if: contains(matrix.family, 'rp2040') && github.repository_owner == 'hathach'
|
2022-07-23 18:39:22 +07:00
|
|
|
run: find examples/ -name "*.elf" -exec mv {} . \;
|
|
|
|
|
2023-02-01 16:36:39 +07:00
|
|
|
- name: Prepare stm32l412nucleo Artifacts
|
2023-03-19 16:43:59 +07:00
|
|
|
if: contains(matrix.family, 'stm32l4')
|
2023-02-01 15:14:35 +07:00
|
|
|
run: find examples/ -path "*stm32l412nucleo/*.elf" -exec mv {} . \;
|
|
|
|
|
2023-03-19 16:43:59 +07:00
|
|
|
- name: Upload Artifacts for rp2040
|
2023-03-19 17:26:49 +07:00
|
|
|
if: contains(matrix.family,'rp2040') && github.repository_owner == 'hathach'
|
2023-02-01 15:14:35 +07:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-03-19 16:43:59 +07:00
|
|
|
name: rp2040
|
2023-02-01 15:14:35 +07:00
|
|
|
path: |
|
|
|
|
*.elf
|
|
|
|
|
2023-03-19 16:43:59 +07:00
|
|
|
- name: Upload Artifacts for stm32l412nucleo
|
2023-03-19 17:26:49 +07:00
|
|
|
if: contains(matrix.family, 'stm32l4') && github.repository_owner == 'hathach'
|
2023-03-19 16:43:59 +07:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: stm32l4
|
|
|
|
path: |
|
|
|
|
*.elf
|
|
|
|
|
|
|
|
|
2021-03-02 12:24:12 +07:00
|
|
|
# ---------------------------------------
|
2022-01-05 14:11:39 -08:00
|
|
|
# Build all no-family (orphaned) boards
|
2022-11-16 11:01:54 +07:00
|
|
|
# disable this workflow since it is often failed randomly
|
2021-03-02 12:24:12 +07:00
|
|
|
# ---------------------------------------
|
|
|
|
build-board:
|
2021-03-01 21:45:48 +07:00
|
|
|
runs-on: ubuntu-latest
|
2022-11-16 11:01:54 +07:00
|
|
|
if: false
|
2021-03-01 21:45:48 +07:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-03-02 12:24:12 +07:00
|
|
|
example:
|
2021-03-04 22:50:45 +07:00
|
|
|
# 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'
|
2021-03-02 12:24:12 +07:00
|
|
|
- 'device/net_lwip_webserver'
|
2021-03-04 22:50:45 +07:00
|
|
|
- '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-04 22:50:45 +07:00
|
|
|
|
2021-03-01 21:45:48 +07:00
|
|
|
- name: Build
|
2021-05-26 17:12:26 +07:00
|
|
|
run: python3 tools/build_board.py ${{ matrix.example }}
|
2021-03-04 20:22:16 +07:00
|
|
|
|
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
|
|
|
|
# ---------------------------------------
|
2022-11-16 11:01:54 +07:00
|
|
|
hw-rp2040-test:
|
2023-02-10 14:56:32 +07:00
|
|
|
# run only with hathach's commit due to limited resource on RPI4
|
2022-11-06 22:33:55 +07:00
|
|
|
if: github.repository_owner == 'hathach'
|
|
|
|
needs: build-arm
|
2022-11-15 18:10:41 +07:00
|
|
|
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
|
2021-03-04 20:22:16 +07:00
|
|
|
with:
|
2022-11-06 22:33:55 +07:00
|
|
|
name: rp2040
|
2021-03-04 20:22:16 +07:00
|
|
|
|
2022-11-06 22:33:55 +07:00
|
|
|
- name: Create flash.sh
|
2021-03-02 12:24:12 +07:00
|
|
|
run: |
|
2023-02-10 14:56:32 +07:00
|
|
|
#echo > flash.sh 'cmdout=$(openocd -f "interface/picoprobe.cfg" -f "target/rp2040.cfg" -c "program $1 reset exit")'
|
|
|
|
echo > flash.sh 'pyocd flash -t rp2040 $1'
|
2022-11-16 11:01:54 +07:00
|
|
|
echo >> flash.sh 'if (( $? )) ; then echo $cmdout ; fi'
|
2022-11-06 22:33:55 +07:00
|
|
|
chmod +x flash.sh
|
2021-03-04 20:22:16 +07:00
|
|
|
|
2022-11-06 22:33:55 +07:00
|
|
|
- name: Test cdc_dual_ports
|
|
|
|
run: |
|
|
|
|
./flash.sh cdc_dual_ports.elf
|
2023-02-10 15:41:48 +07:00
|
|
|
while (! ([ -e /dev/ttyACM1 ] && [ -e /dev/ttyACM2 ])) && [ $SECONDS -le 10 ]; do :; done
|
2022-11-06 22:33:55 +07:00
|
|
|
test -e /dev/ttyACM1 && echo "ttyACM1 exists"
|
|
|
|
test -e /dev/ttyACM2 && echo "ttyACM2 exists"
|
2021-03-01 21:45:48 +07:00
|
|
|
|
2022-11-06 22:33:55 +07:00
|
|
|
- name: Test cdc_msc
|
|
|
|
run: |
|
|
|
|
./flash.sh cdc_msc.elf
|
|
|
|
readme='/media/pi/TinyUSB MSC/README.TXT'
|
2023-02-10 15:41:48 +07:00
|
|
|
while (! ([ -e /dev/ttyACM1 ] && [ -f "$readme" ])) && [ $SECONDS -le 10 ]; do :; done
|
2022-11-06 22:33:55 +07:00
|
|
|
test -e /dev/ttyACM1 && echo "ttyACM1 exists"
|
|
|
|
test -f "$readme" && echo "$readme exists"
|
|
|
|
cat "$readme"
|
|
|
|
|
|
|
|
- name: Test dfu
|
|
|
|
run: |
|
|
|
|
./flash.sh dfu.elf
|
2023-02-10 15:41:48 +07:00
|
|
|
while (! (dfu-util -l | grep "Found DFU")) && [ $SECONDS -le 10 ]; do :; done
|
2022-11-06 22:33:55 +07:00
|
|
|
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
|
2023-02-10 15:41:48 +07:00
|
|
|
while (! (dfu-util -l | grep "Found Runtime")) && [ $SECONDS -le 10 ]; do :; done
|
2022-11-06 22:33:55 +07:00
|
|
|
|
2023-02-01 15:14:35 +07:00
|
|
|
# ---------------------------------------
|
|
|
|
# Hardware in the loop (HIL)
|
|
|
|
# Current self-hosted instance is running on an EPYC 7232 server hosted by HiFiPhile user
|
|
|
|
# - STM32L412 Nucleo with on-board jlink as ttyACM0
|
|
|
|
# ---------------------------------------
|
|
|
|
hw-stm32l412nucleo-test:
|
|
|
|
needs: build-arm
|
|
|
|
runs-on: [self-hosted, Linux, X64, hifiphile]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clean workspace
|
|
|
|
run: |
|
|
|
|
echo "Cleaning up previous run"
|
|
|
|
rm -rf "${{ github.workspace }}"
|
|
|
|
mkdir -p "${{ github.workspace }}"
|
|
|
|
|
|
|
|
- name: Download stm32l4 Artifacts
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
2023-03-08 12:15:39 +07:00
|
|
|
name: stm32l4
|
2023-02-01 15:14:35 +07:00
|
|
|
|
|
|
|
- name: Create flash.sh
|
|
|
|
run: |
|
|
|
|
echo > flash.sh 'echo halt > flash.jlink'
|
|
|
|
echo >> flash.sh 'echo r >> flash.jlink'
|
|
|
|
echo >> flash.sh 'echo loadfile $1 >> flash.jlink'
|
|
|
|
echo >> flash.sh 'echo r >> flash.jlink'
|
|
|
|
echo >> flash.sh 'echo go >> flash.jlink'
|
|
|
|
echo >> flash.sh 'echo exit >> flash.jlink'
|
|
|
|
echo >> flash.sh 'cmdout=$(JLinkExe -device stm32l412kb -if swd -JTAGConf -1,-1 -speed auto -NoGui 1 -ExitOnError 1 -CommandFile flash.jlink)'
|
|
|
|
echo >> flash.sh 'if (( $? )) ; then echo $cmdout ; fi'
|
|
|
|
chmod +x flash.sh
|
2022-11-06 22:33:55 +07:00
|
|
|
|
2023-02-01 15:14:35 +07:00
|
|
|
- name: Test cdc_dual_ports
|
|
|
|
run: |
|
|
|
|
./flash.sh cdc_dual_ports.elf
|
2023-02-10 15:41:48 +07:00
|
|
|
while (! ([ -e /dev/ttyACM1 ] && [ -e /dev/ttyACM2 ])) && [ $SECONDS -le 10 ]; do :; done
|
2023-02-01 15:14:35 +07:00
|
|
|
test -e /dev/ttyACM1 && echo "ttyACM1 exists"
|
|
|
|
test -e /dev/ttyACM2 && echo "ttyACM2 exists"
|
|
|
|
|
|
|
|
# Debian does not auto mount usb drive. skip this test for now
|
|
|
|
- name: Test cdc_msc
|
|
|
|
if: false
|
|
|
|
run: |
|
|
|
|
./flash.sh cdc_msc.elf
|
|
|
|
readme='/media/pi/TinyUSB MSC/README.TXT'
|
2023-02-10 15:41:48 +07:00
|
|
|
while (! ([ -e /dev/ttyACM1 ] && [ -f "$readme" ])) && [ $SECONDS -le 10 ]; do :; done
|
2023-02-01 15:14:35 +07:00
|
|
|
test -e /dev/ttyACM1 && echo "ttyACM1 exists"
|
|
|
|
test -f "$readme" && echo "$readme exists"
|
|
|
|
cat "$readme"
|
|
|
|
|
|
|
|
- name: Test dfu
|
|
|
|
run: |
|
|
|
|
./flash.sh dfu.elf
|
2023-02-10 15:41:48 +07:00
|
|
|
while (! (dfu-util -l | grep "Found DFU")) && [ $SECONDS -le 10 ]; do :; done
|
2023-02-01 15:14:35 +07:00
|
|
|
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
|
2023-03-17 15:54:25 +07:00
|
|
|
while (! (dfu-util -l | grep "Found Runtime")) && [ $SECONDS -le 10 ]; do :; done
|