diff options
| author | Ha Thach <[email protected]> | 2024-04-15 23:14:10 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-15 23:14:10 +0700 |
| commit | fb21b6a67d84322c7c55fb4962f317c341c058ab (patch) | |
| tree | 59ac0ddaf2512a2002f5d1553a38e068834f98a8 /.github/workflows | |
| parent | d816a9bdf892daeb35b88b9a469599fcda432c55 (diff) | |
| parent | afb66a955c51f6ef36d0e544c44ee06a88eb2b2b (diff) | |
Merge pull request #2134 from clhenry/non-bus-powered-re-enumeration
Non-bus-powered MSP430 support.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build_msp430.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/build_msp430.yml b/.github/workflows/build_msp430.yml index f913df913..95d212708 100644 --- a/.github/workflows/build_msp430.yml +++ b/.github/workflows/build_msp430.yml @@ -61,10 +61,11 @@ jobs: tar -C ~/cache/toolchain -xaf toolchain.tar.bz2 - name: Set Toolchain Path - run: echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin` - - - name: Get Dependencies - run: python3 tools/get_deps.py ${{ matrix.family }} + run: | + echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin` + sudo apt install -y ninja-build - name: Build - run: python3 tools/build_make.py ${{ matrix.family }} + run: | + python3 tools/get_deps.py ${{ matrix.family }} + python tools/build_cmake.py ${{ matrix.family }} -DCMAKE_BUILD_TYPE=MinSizeRel |
