esp32-s2_dfu/.github/workflows/build.yml

144 lines
4.1 KiB
YAML
Raw Normal View History

name: Build ARM
2019-12-27 10:34:25 +01:00
2021-01-26 16:34:29 +01:00
on:
pull_request:
push:
release:
types:
- created
2019-12-27 10:34:25 +01:00
jobs:
2021-03-04 14:22:16 +01:00
# ---------------------------------------
# Unit testing with Ceedling
2021-03-04 14:22:16 +01:00
# ---------------------------------------
2019-12-27 14:58:37 +01:00
unit-test:
2020-04-18 10:38:33 +02:00
runs-on: ubuntu-latest
2019-12-27 14:58:37 +01:00
steps:
- name: Setup Ruby
2020-04-06 15:35:52 +02:00
uses: actions/setup-ruby@v1
2021-01-29 05:30:15 +01:00
with:
ruby-version: '2.7'
2020-10-01 20:37:54 +02:00
2019-12-27 14:58:37 +01:00
- name: Checkout TinyUSB
uses: actions/checkout@v2
- name: Unit Tests
run: |
# Install Ceedling
gem install ceedling
cd test
ceedling test:all
# ---------------------------------------
# Build ARM family
# ---------------------------------------
build-arm:
2021-01-23 12:32:56 +01:00
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
family:
2021-01-26 16:34:29 +01:00
# Alphabetical order
2021-01-23 12:32:56 +01:00
- 'imxrt'
2021-04-28 10:16:36 +02:00
- 'lpc15'
- 'lpc18'
2021-04-28 18:27:12 +02:00
- 'lpc54'
2021-03-01 06:35:17 +01:00
- 'lpc55'
2021-01-23 12:32:56 +01:00
- 'nrf'
2021-01-23 19:28:56 +01:00
- 'rp2040'
2021-02-04 08:17:51 +01:00
- 'samd11'
2021-01-23 12:32:56 +01:00
- 'samd21'
- 'samd51'
2021-06-28 09:37:41 +02:00
- 'saml2x'
2021-04-18 10:44:50 +02:00
- 'stm32f0'
2021-01-23 12:32:56 +01:00
- 'stm32f4'
- 'stm32f7'
2021-03-03 14:22:55 +01:00
- 'stm32h7'
2021-01-23 12:32:56 +01:00
steps:
- name: Setup Python
uses: actions/setup-python@v2
- name: Checkout TinyUSB
uses: actions/checkout@v2
2021-03-05 16:24:03 +01:00
- name: Checkout common submodules in lib
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip lib/sct_neopixel
2021-01-23 12:32:56 +01:00
- name: Checkout pico-sdk
2021-04-11 08:45:55 +02:00
if: matrix.family == 'rp2040'
run: |
2021-06-02 20:16:27 +02:00
git clone --depth 1 -b develop https://github.com/raspberrypi/pico-sdk ~/pico-sdk
echo >> $GITHUB_ENV PICO_SDK_PATH=~/pico-sdk
2021-03-04 14:22:16 +01:00
- name: Set Toolchain URL
run: echo >> $GITHUB_ENV TOOLCHAIN_URL=https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases/download/v10.2.1-1.1/xpack-arm-none-eabi-gcc-10.2.1-1.1-linux-x64.tar.gz
- name: Cache Toolchain
uses: actions/cache@v2
id: cache-toolchain
with:
path: ~/cache/
key: ${{ runner.os }}-21-03-04-${{ env.TOOLCHAIN_URL }}
- name: Install Toolchain
if: steps.cache-toolchain.outputs.cache-hit != 'true'
run: |
mkdir -p ~/cache/toolchain
wget --progress=dot:mega $TOOLCHAIN_URL -O toolchain.tar.gz
tar -C ~/cache/toolchain -xaf toolchain.tar.gz
- name: Set Toolchain Path
run: echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin`
2021-01-23 12:32:56 +01:00
- name: Build
run: python3 tools/build_family.py ${{ matrix.family }}
# ---------------------------------------
# Build all no-family (opharned) boards
# ---------------------------------------
build-board:
2021-03-01 15:45:48 +01:00
runs-on: ubuntu-latest
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 15:45:48 +01:00
steps:
- name: Setup Python
uses: actions/setup-python@v2
- name: Checkout TinyUSB
uses: actions/checkout@v2
2021-03-05 16:24:03 +01:00
- name: Checkout common submodules in lib
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
2021-03-04 14:22:16 +01:00
- name: Set Toolchain URL
run: echo >> $GITHUB_ENV TOOLCHAIN_URL=https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases/download/v10.2.1-1.1/xpack-arm-none-eabi-gcc-10.2.1-1.1-linux-x64.tar.gz
- name: Cache Toolchain
uses: actions/cache@v2
id: cache-toolchain
with:
path: ~/cache/
key: ${{ runner.os }}-21-03-04-${{ env.TOOLCHAIN_URL }}
- name: Install Toolchain
if: steps.cache-toolchain.outputs.cache-hit != 'true'
run: |
2021-03-04 14:22:16 +01:00
mkdir -p ~/cache/toolchain
wget --progress=dot:mega $TOOLCHAIN_URL -O toolchain.tar.gz
tar -C ~/cache/toolchain -xaf toolchain.tar.gz
- name: Set Toolchain Path
run: echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin`
2021-03-01 15:45:48 +01:00
- name: Build
run: python3 tools/build_board.py ${{ matrix.example }}