diff options
| author | Ha Thach <[email protected]> | 2020-03-24 12:16:15 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-03-24 12:16:15 +0700 |
| commit | 9a48e98fadaf69a8637c5586d730754230eb68a9 (patch) | |
| tree | c087e78655aa7ff789b39df0435e9b86a8eae448 /.github/workflows | |
| parent | fca4a6eabf0f2de5003700deb9df0871565cf32a (diff) | |
| parent | 27ec8451a4104bdf03505c8bbd6d59d89e60273b (diff) | |
Merge branch 'master' into develop
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4cf2f1390..a663f3ceb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,18 +39,19 @@ jobs: npm install --global xpm xpm install --global @xpack-dev-tools/arm-none-eabi-gcc@latest xpm install --global @xpack-dev-tools/riscv-none-embed-gcc@latest + 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 + tar -C $HOME -xaf /tmp/msp430-gcc.tar.bz2 echo "::add-path::`echo $HOME/opt/xPacks/@xpack-dev-tools/arm-none-eabi-gcc/*/.content/bin`" echo "::add-path::`echo $HOME/opt/xPacks/@xpack-dev-tools/riscv-none-embed-gcc/*/.content/bin`" + echo "::add-path::`echo $HOME/msp430-gcc-*_linux64/bin`" - name: Checkout TinyUSB uses: actions/checkout@v2 - - name: Checkout submodules - shell: bash + - name: Checkout Submodules run: | - auth_header="$(git config --local --get http.https://github.com/.extraheader)" git submodule sync --recursive - git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive + git submodule update --init --recursive - name: Build run: python3 tools/build_all.py ${{ matrix.example }} |
