2019-12-27 21:39:44 +07:00
|
|
|
name: Build
|
2019-12-27 16:34:25 +07:00
|
|
|
|
2020-03-28 11:44:11 +07:00
|
|
|
on: [pull_request, push, repository_dispatch]
|
2019-12-27 16:34:25 +07:00
|
|
|
|
|
|
|
jobs:
|
2019-12-27 20:58:37 +07:00
|
|
|
unit-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup Ruby
|
2020-04-06 20:35:52 +07:00
|
|
|
uses: actions/setup-ruby@v1
|
2019-12-27 20:58:37 +07:00
|
|
|
|
|
|
|
- name: Checkout TinyUSB
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Unit Tests
|
|
|
|
run: |
|
|
|
|
# Install Ceedling
|
|
|
|
gem install ceedling
|
|
|
|
cd test
|
|
|
|
ceedling test:all
|
|
|
|
|
2019-12-27 16:34:25 +07:00
|
|
|
build:
|
2019-12-27 21:03:40 +07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-03-11 10:25:46 +07: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 16:34:25 +07:00
|
|
|
steps:
|
2019-12-27 20:29:25 +07:00
|
|
|
- name: Setup Python
|
2019-12-27 16:55:13 +07:00
|
|
|
uses: actions/setup-python@v1
|
2020-04-06 19:43:47 +07:00
|
|
|
|
|
|
|
- name: Setup Node.js
|
2020-04-06 20:35:52 +07:00
|
|
|
uses: actions/setup-node@v1
|
2020-04-06 19:43:47 +07:00
|
|
|
|
2020-04-03 14:20:48 -04:00
|
|
|
- name: Cache MSP430 Toolchain
|
|
|
|
id: cache-msp430
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: /tmp/dl/
|
|
|
|
# Increment serial number at end when updating downloads
|
|
|
|
key: msp430-${{ runner.os }}-0
|
2020-04-06 19:43:47 +07:00
|
|
|
|
2019-12-27 20:29:25 +07:00
|
|
|
- name: Install Toolchains
|
2019-12-27 16:55:13 +07:00
|
|
|
run: |
|
2020-04-03 12:08:06 +07:00
|
|
|
# ARM & RISC-V GCC from xpack
|
2019-12-27 17:05:57 +07:00
|
|
|
npm install --global xpm
|
2019-12-27 18:01:14 +07:00
|
|
|
xpm install --global @xpack-dev-tools/arm-none-eabi-gcc@latest
|
2019-12-27 17:05:57 +07:00
|
|
|
xpm install --global @xpack-dev-tools/riscv-none-embed-gcc@latest
|
2019-12-28 15:55:18 +07:00
|
|
|
echo "::add-path::`echo $HOME/opt/xPacks/@xpack-dev-tools/arm-none-eabi-gcc/*/.content/bin`"
|
2019-12-28 16:11:10 +07:00
|
|
|
echo "::add-path::`echo $HOME/opt/xPacks/@xpack-dev-tools/riscv-none-embed-gcc/*/.content/bin`"
|
2020-04-03 12:08:06 +07:00
|
|
|
|
|
|
|
# TI MSP430 GCC
|
2020-04-03 14:20:48 -04:00
|
|
|
mkdir -p /tmp/dl/
|
|
|
|
[ -f "/tmp/dl/msp430-gcc.tar.bz2" ] || wget --progress=dot:mega 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/dl/msp430-gcc.tar.bz2
|
|
|
|
tar -C $HOME -xaf /tmp/dl/msp430-gcc.tar.bz2
|
2020-03-22 21:07:14 +07:00
|
|
|
echo "::add-path::`echo $HOME/msp430-gcc-*_linux64/bin`"
|
2020-04-03 12:08:06 +07:00
|
|
|
|
|
|
|
# ESP IDF
|
2020-04-06 14:43:49 +07:00
|
|
|
git clone --depth 1 https://github.com/espressif/esp-idf.git $HOME/esp-idf
|
2020-04-03 12:08:06 +07:00
|
|
|
cd $HOME/esp-idf
|
|
|
|
./install.sh
|
|
|
|
|
2019-12-27 20:53:55 +07:00
|
|
|
- name: Checkout TinyUSB
|
2019-12-27 20:49:54 +07:00
|
|
|
uses: actions/checkout@v2
|
2020-04-03 14:20:48 -04:00
|
|
|
with:
|
|
|
|
# Cannot do submodule checkout here since LWIP's git server cannot checkout unadventised commits (it must use tags)
|
|
|
|
submodules: 'false'
|
|
|
|
|
2020-03-24 10:24:38 +07:00
|
|
|
- name: Checkout Submodules
|
|
|
|
run: |
|
|
|
|
git submodule sync --recursive
|
2020-04-03 14:20:48 -04:00
|
|
|
# Special case LWIP since GNU's Savannah can't do shallow checkout of non-tagged commits
|
|
|
|
git submodule update --init --recursive lib/lwip
|
|
|
|
git submodule update --init --recursive --depth 1
|
|
|
|
|
2019-12-27 20:33:09 +07:00
|
|
|
- name: Build
|
2020-04-03 12:08:06 +07:00
|
|
|
run: |
|
|
|
|
. $HOME/esp-idf/export.sh
|
|
|
|
python3 tools/build_all.py ${{ matrix.example }}
|
2020-01-09 21:31:01 +07:00
|
|
|
|