2019-12-27 16:34:25 +07:00
|
|
|
name: TinyUSB CI
|
|
|
|
|
|
|
|
on: [pull_request, push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
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
|
|
|
|
with:
|
|
|
|
python-version: 3.5
|
2019-12-27 20:29:25 +07:00
|
|
|
- name: Setup Node.js
|
2019-12-27 17:05:57 +07:00
|
|
|
uses: actions/setup-node@v1.1.0
|
2019-12-27 20:29:25 +07:00
|
|
|
- name: Setup Ruby
|
|
|
|
uses: actions/setup-ruby@v1.0.0
|
|
|
|
- name: Install Toolchains
|
2019-12-27 16:55:13 +07:00
|
|
|
run: |
|
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-27 16:55:13 +07:00
|
|
|
- name: Git clone
|
|
|
|
uses: actions/checkout@v1
|
2019-12-27 16:34:25 +07:00
|
|
|
with:
|
|
|
|
submodules: true
|
2019-12-27 20:29:25 +07:00
|
|
|
- name: Unit Tests
|
|
|
|
run: |
|
|
|
|
# Install Ceedling
|
|
|
|
gem install ceedling
|
|
|
|
cd test
|
|
|
|
ceedling test:all
|
2019-12-27 20:33:09 +07:00
|
|
|
cd ..
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2019-12-27 20:41:51 +07:00
|
|
|
export PATH=$PATH:`echo $HOME/opt/xPacks/@xpack-dev-tools/arm-none-eabi-gcc/*/.content/bin`:`echo $HOME/opt/xPacks/@xpack-dev-tools/riscv-none-embed-gcc/*/.content/bin`
|
2019-12-27 20:38:39 +07:00
|
|
|
arm-none-eabi-gcc --version
|
|
|
|
riscv-none-embed-gcc --version
|
2019-12-27 20:33:09 +07:00
|
|
|
python3 tools/build_all.py board_test
|