We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35a5658 commit 05bd726Copy full SHA for 05bd726
.github/scripts/on-push.sh
@@ -17,10 +17,6 @@ function build(){
17
args+=" \"$fqbn\""
18
19
if [ "$OS_IS_LINUX" == "1" ]; then
20
- # CMake Test
21
- if [ "$chunk_index" -eq 0 ]; then
22
- bash "$ARDUINO_ESP32_PATH/${SCRIPTS_DIR}/check-cmakelists.sh"
23
- fi
24
args+=" $target"
25
args+=" $ARDUINO_ESP32_PATH/libraries"
26
args+=" $chunk_index $chunks_cnt"
.github/workflows/push.yml
@@ -14,6 +14,13 @@ concurrency:
14
15
jobs:
16
+ cmake-check:
+ name: Check cmake file
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - run: bash ./.github/scripts/check-cmakelists.sh
+
# Ubuntu
build-arduino-linux:
name: Arduino ${{ matrix.chunk }} on ubuntu-latest
0 commit comments