summaryrefslogtreecommitdiff
path: root/.github/workflows/build_esp32s.yml
diff options
context:
space:
mode:
authorhathach <[email protected]>2020-04-07 11:15:59 +0700
committerhathach <[email protected]>2020-04-07 11:15:59 +0700
commitf073a5ecd37a705fae89400a50ff24fa985c895a (patch)
tree36bd0ed16b8065402c85573184cbcf2b303851d2 /.github/workflows/build_esp32s.yml
parent19f767317f9f19490e032cbc22de30f16f645e99 (diff)
CI: seperate esp32s2 into different job
skip esp32s in build_all.py script
Diffstat (limited to '.github/workflows/build_esp32s.yml')
-rw-r--r--.github/workflows/build_esp32s.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/.github/workflows/build_esp32s.yml b/.github/workflows/build_esp32s.yml
deleted file mode 100644
index 71155073f..000000000
--- a/.github/workflows/build_esp32s.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-name: Build ESP32S
-
-on: [pull_request, push, repository_dispatch]
-
-jobs:
- build:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- example: ['cdc_msc_freertos']
-
- steps:
- - name: Setup Python
- uses: actions/setup-python@v1
-
- - name: Install Toolchains
- run: |
- # ESP IDF
- git clone --depth 1 https://github.com/espressif/esp-idf.git $HOME/esp-idf
- cd $HOME/esp-idf
- ./install.sh
-
- - name: Checkout TinyUSB
- uses: actions/checkout@v2
- with:
- # Cannot do submodule checkout here since LWIP's git server cannot checkout unadventised commits (it must use tags)
- submodules: 'false'
-
- - name: Build
- run: |
- . $HOME/esp-idf/export.sh
- python3 tools/build_all.py ${{ matrix.example }} esp32s2_saola
-