[CI] Added more boards CI_FORCE_BUILD
This commit is contained in:
parent
6b0b073e02
commit
4c219b5fab
1 changed files with 11 additions and 5 deletions
14
.github/workflows/main.yml
vendored
14
.github/workflows/main.yml
vendored
|
@ -17,6 +17,10 @@ jobs:
|
||||||
- arduino:avr:leonardo
|
- arduino:avr:leonardo
|
||||||
- esp8266:esp8266:generic:xtal=80,ResetMethod=ck,CrystalFreq=26,FlashFreq=40,FlashMode=qio,eesz=512K
|
- esp8266:esp8266:generic:xtal=80,ResetMethod=ck,CrystalFreq=26,FlashFreq=40,FlashMode=qio,eesz=512K
|
||||||
- arduino:samd:arduino_zero_native
|
- arduino:samd:arduino_zero_native
|
||||||
|
- esp32:esp32:esp32
|
||||||
|
- STM32:stm32:GenF3:pnum=BLACKPILL_F303CC
|
||||||
|
- arduino:samd:arduino_zero_native
|
||||||
|
- arduino:sam:arduino_due_x
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: ${{ matrix.board }}
|
name: ${{ matrix.board }}
|
||||||
|
@ -44,12 +48,14 @@ jobs:
|
||||||
warnings: 'all'
|
warnings: 'all'
|
||||||
run: |
|
run: |
|
||||||
if [[ "${{ contains(matrix.board, 'esp8266') }}" == "true" ]]; then
|
if [[ "${{ contains(matrix.board, 'esp8266') }}" == "true" ]]; then
|
||||||
echo "::set-output name=skip-path::HTTP|MQTT).*ino"
|
|
||||||
echo "::set-output name=index-url::--additional-urls http://arduino.esp8266.com/stable/package_esp8266com_index.json"
|
echo "::set-output name=index-url::--additional-urls http://arduino.esp8266.com/stable/package_esp8266com_index.json"
|
||||||
|
echo "::set-output name=skip-path::(HTTP|MQTT).*ino"
|
||||||
|
|
||||||
else
|
elif [[ "${{ contains(matrix.board, 'esp32') }}" == "true" ]]; then
|
||||||
echo "::set-output name=skip-path::"
|
echo "::set-output name=index-url::--additional-urls https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json"
|
||||||
echo "::set-output name=index-url::"
|
|
||||||
|
elif [[ "${{ contains(matrix.board, 'esp32') }}" == "true" ]]; then
|
||||||
|
echo "::set-output name=index-url::--additional-urls https://github.com/stm32duino/BoardManagerFiles/raw/master/STM32/package_stm_index.json"
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue