summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-03-05 22:49:29 +0700
committerhathach <[email protected]>2021-03-05 22:49:29 +0700
commit7afe1d9e16732ed4129bce189450159cc0ecb45c (patch)
tree0108f8260afc21ad7b00bd0be6bbad8a8d47e747 /.github/workflows
parentca6abea97d1cfa024430e5cc5a89a9ca4e84a32a (diff)
clean up
some how lpc55 ci cannot build without pre-checkout lib/sct_neopixel
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ba6fa12fd..0f2b9ea3b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -59,7 +59,7 @@ jobs:
uses: actions/checkout@v2
- name: Checkout common submodules in lib
- run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
+ run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip lib/sct_neopixel
- name: Set Toolchain URL
run: echo >> $GITHUB_ENV TOOLCHAIN_URL=https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases/download/v10.2.1-1.1/xpack-arm-none-eabi-gcc-10.2.1-1.1-linux-x64.tar.gz
@@ -197,8 +197,6 @@ jobs:
- name: Checkout TinyUSB
uses: actions/checkout@v2
- with:
- submodules: 'false'
- name: Build
run: docker run --rm -v $PWD:/project -w /project espressif/idf:latest python3 tools/build_esp32s2.py ${{ matrix.board }}
@@ -213,7 +211,7 @@ jobs:
matrix:
family:
# Alphabetical order
- - 'msp430'
+ - 'msp430'
steps:
- name: Setup Python
uses: actions/setup-python@v2