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

32 lines
914 B
YAML
Raw Normal View History

2019-12-27 10:34:25 +01:00
name: TinyUSB CI
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
2019-12-27 10:55:13 +01:00
- name: Python
uses: actions/setup-python@v1
with:
python-version: 3.5
2019-12-27 11:05:57 +01:00
- name: Node.js
uses: actions/setup-node@v1.1.0
2019-12-27 10:55:13 +01:00
- name: Toolchains
run: |
2019-12-27 11:05:57 +01:00
# Install XPM
npm install --global xpm
2019-12-27 12:01:14 +01:00
# Install ARM GCC
xpm install --global @xpack-dev-tools/arm-none-eabi-gcc@latest
2019-12-27 14:11:43 +01:00
export PATH=$PATH:`echo $HOME/opt/xPacks/@xpack-dev-tools/arm-none-eabi-gcc/*/.content/bin`
2019-12-27 12:01:14 +01:00
# Install RISCV GCC
2019-12-27 11:05:57 +01:00
xpm install --global @xpack-dev-tools/riscv-none-embed-gcc@latest
2019-12-27 12:01:14 +01:00
export PATH=$PATH:`echo $HOME/opt/xPacks/@xpack-dev-tools/riscv-none-embed-gcc/*/.content/bin`
arm-none-eabi-gcc --version
2019-12-27 10:55:13 +01:00
riscv-none-embed-gcc --version
- name: Git clone
uses: actions/checkout@v1
2019-12-27 10:34:25 +01:00
with:
submodules: true