diff options
| author | hathach <[email protected]> | 2020-04-01 23:03:57 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2020-04-01 23:03:57 +0700 |
| commit | 2824e5c97aedfe46a621d786fb6577f632a0097c (patch) | |
| tree | 53af363031c5b223421204155337003d31da7d52 /.github/workflows | |
| parent | ec578fa8cb9d3053abc274829616cb30521b1695 (diff) | |
more ci test
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/esp32s2.yml | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/.github/workflows/esp32s2.yml b/.github/workflows/esp32s2.yml index 0b70c44b6..a3f30c8f8 100644 --- a/.github/workflows/esp32s2.yml +++ b/.github/workflows/esp32s2.yml @@ -1,4 +1,4 @@ -name: Build +name: Build ESP32-S2 on: [pull_request, push, repository_dispatch] @@ -14,7 +14,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v1 - - name: Install Toolchains + - name: Install ESP-IDF run: | git clone https://github.com/espressif/esp-idf.git $HOME/esp-idf cd $HOME/esp-idf @@ -24,11 +24,15 @@ jobs: - name: Checkout TinyUSB uses: actions/checkout@v2 - - name: Checkout Submodules - run: | - git submodule sync --recursive - git submodule update --init --recursive +# - name: Checkout Submodules +# run: | +# git submodule sync --recursive +# git submodule update --init --recursive -# - name: Build -# run: python3 tools/build_all.py ${{ matrix.example }} + - name: Build + run: | + . $HOME/esp-idf/export.sh + cd examples/device/cdc_msc_freertos + idf.py build + #python3 tools/build_all.py ${{ matrix.example }} |
