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

59 lines
1.8 KiB
YAML
Raw Normal View History

2019-12-27 15:39:44 +01:00
name: Build
2019-12-27 10:34:25 +01:00
on: [pull_request, push, repository_dispatch]
2019-12-27 10:34:25 +01:00
jobs:
2019-12-27 14:58:37 +01:00
unit-test:
runs-on: ubuntu-latest
steps:
- name: Setup Ruby
uses: actions/setup-ruby@v1.0.0
- name: Checkout TinyUSB
uses: actions/checkout@v2
- name: Unit Tests
run: |
# Install Ceedling
gem install ceedling
cd test
ceedling test:all
2019-12-27 10:34:25 +01:00
build:
2019-12-27 15:03:40 +01:00
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
2020-03-11 04:25:46 +01:00
example: ['board_test', 'cdc_dual_ports', 'cdc_msc', 'cdc_msc_freertos', 'dfu_rt',
'hid_composite', 'hid_generic_inout', 'midi_test', 'msc_dual_lun', 'net_lwip_webserver',
'usbtmc', 'webusb_serial']
2019-12-27 10:34:25 +01:00
steps:
2019-12-27 14:29:25 +01:00
- name: Setup Python
2019-12-27 10:55:13 +01:00
uses: actions/setup-python@v1
2019-12-27 14:58:37 +01:00
2019-12-27 14:29:25 +01:00
- name: Setup Node.js
2019-12-27 11:05:57 +01:00
uses: actions/setup-node@v1.1.0
2019-12-27 14:58:37 +01:00
2019-12-27 14:29:25 +01:00
- name: Install Toolchains
2019-12-27 10:55:13 +01:00
run: |
2019-12-27 11:05:57 +01:00
npm install --global xpm
2019-12-27 12:01:14 +01:00
xpm install --global @xpack-dev-tools/arm-none-eabi-gcc@latest
2019-12-27 11:05:57 +01:00
xpm install --global @xpack-dev-tools/riscv-none-embed-gcc@latest
2020-03-22 15:00:53 +01:00
wget http://software-dl.ti.com/msp430/msp430_public_sw/mcu/msp430/MSPGCC/8_3_0_0/exports/msp430-gcc-8.3.0.16_linux64.tar.bz2 -O /tmp/msp430-gcc.tar.bz2
2020-03-22 15:07:14 +01:00
tar -C $HOME -xaf /tmp/msp430-gcc.tar.bz2
2019-12-28 09:55:18 +01:00
echo "::add-path::`echo $HOME/opt/xPacks/@xpack-dev-tools/arm-none-eabi-gcc/*/.content/bin`"
2019-12-28 10:11:10 +01:00
echo "::add-path::`echo $HOME/opt/xPacks/@xpack-dev-tools/riscv-none-embed-gcc/*/.content/bin`"
2020-03-22 15:07:14 +01:00
echo "::add-path::`echo $HOME/msp430-gcc-*_linux64/bin`"
2019-12-28 09:49:38 +01:00
2019-12-27 14:53:55 +01:00
- name: Checkout TinyUSB
2019-12-27 14:49:54 +01:00
uses: actions/checkout@v2
2019-12-27 14:53:55 +01:00
2020-03-24 04:24:38 +01:00
- name: Checkout Submodules
run: |
git submodule sync --recursive
git submodule update --init --recursive
2019-12-27 14:53:55 +01:00
2019-12-27 14:33:09 +01:00
- name: Build
2019-12-28 09:03:25 +01:00
run: python3 tools/build_all.py ${{ matrix.example }}
2020-01-09 15:31:01 +01:00