Builder scripts update (#3300)
This commit is contained in:
parent
1c77790a5b
commit
3b71e136e1
380
.github/workflows/main.yml
vendored
380
.github/workflows/main.yml
vendored
@ -9,370 +9,50 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build-arduino-0:
|
build-arduino-linux:
|
||||||
name: Build Arduino IDE Tests 0
|
name: Arduino ${{ matrix.chunk }} on ubuntu-latest
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
chunk: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Pull submodules
|
- name: Build Sketches
|
||||||
run: git submodule update --init --recursive
|
run: bash ./tools/ci/on-push.sh ${{ matrix.chunk }} 12
|
||||||
- name: Run CMake Check
|
|
||||||
run: ./tools/ci/check-cmakelists.sh
|
|
||||||
|
|
||||||
- name: Install Arduino IDE
|
build-arduino-mac:
|
||||||
env:
|
name: Arduino ${{ matrix.chunk }} on macOS-latest
|
||||||
#ESP32_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
runs-on: macOS-latest
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
strategy:
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
matrix:
|
||||||
- name: Test Arduino IDE
|
chunk: [3, 6]
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 0 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-1:
|
|
||||||
name: Build Arduino IDE Tests 1
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Pull submodules
|
- name: Build Sketches
|
||||||
run: git submodule update --init --recursive
|
run: bash ./tools/ci/on-push.sh ${{ matrix.chunk }} 12
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 1 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-2:
|
build-arduino-win:
|
||||||
name: Build Arduino IDE Tests 2
|
name: Arduino ${{ matrix.chunk }} on windows-latest
|
||||||
runs-on: ubuntu-latest
|
runs-on: windows-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
chunk: [5, 15, 25]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Pull submodules
|
- name: Build Sketches
|
||||||
run: git submodule update --init --recursive
|
run: bash ./tools/ci/on-push.sh ${{ matrix.chunk }} 30
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 2 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-3:
|
|
||||||
name: Build Arduino IDE Tests 3
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 3 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-4:
|
|
||||||
name: Build Arduino IDE Tests 4
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 4 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-5:
|
|
||||||
name: Build Arduino IDE Tests 5
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 5 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-6:
|
|
||||||
name: Build Arduino IDE Tests 6
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 6 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-7:
|
|
||||||
name: Build Arduino IDE Tests 7
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 7 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-8:
|
|
||||||
name: Build Arduino IDE Tests 8
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 8 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-9:
|
|
||||||
name: Build Arduino IDE Tests 9
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 9 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-10:
|
|
||||||
name: Build Arduino IDE Tests 10
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 10 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-11:
|
|
||||||
name: Build Arduino IDE Tests 11
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 11 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-12:
|
|
||||||
name: Build Arduino IDE Tests 12
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 12 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-13:
|
|
||||||
name: Build Arduino IDE Tests 13
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 13 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-14:
|
|
||||||
name: Build Arduino IDE Tests 14
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 14 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-15:
|
|
||||||
name: Build Arduino IDE Tests 15
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 15 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-16:
|
|
||||||
name: Build Arduino IDE Tests 16
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 16 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
build-arduino-17:
|
|
||||||
name: Build Arduino IDE Tests 17
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- name: Pull submodules
|
|
||||||
run: git submodule update --init --recursive
|
|
||||||
- name: Install Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-arduino-ide.sh
|
|
||||||
- name: Test Arduino IDE
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/test-arduino-ide.sh 17 18
|
|
||||||
- name: Sketch Sizes
|
|
||||||
run: cat size.log
|
|
||||||
|
|
||||||
|
|
||||||
build-platformio:
|
build-platformio:
|
||||||
name: Build PlatformIO Tests
|
name: PlatformIO on ${{ matrix.os }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Pull submodules
|
- name: Build Sketches
|
||||||
run: git submodule update --init --recursive
|
run: bash ./tools/ci/on-push.sh 1 1
|
||||||
- name: Install Python Wheel
|
|
||||||
run: pip install wheel
|
|
||||||
- name: Install GCC Toolchain
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: cd tools && python get.py
|
|
||||||
- name: Install PlatformIO
|
|
||||||
env:
|
|
||||||
TRAVIS_BUILD_DIR: ${{ github.workspace }}
|
|
||||||
run: ./tools/ci/prep-platformio.sh
|
|
||||||
- name: Test PlatformIO
|
|
||||||
run: ./tools/ci/test-platformio.sh
|
|
||||||
|
10
.travis.yml
10
.travis.yml
@ -21,27 +21,27 @@ jobs:
|
|||||||
- name: "Build Arduino 0"
|
- name: "Build Arduino 0"
|
||||||
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
|
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
|
||||||
stage: build
|
stage: build
|
||||||
script: $TRAVIS_BUILD_DIR/tools/ci/build-tests.sh 0 4
|
script: $TRAVIS_BUILD_DIR/tools/ci/on-push.sh 0 4
|
||||||
|
|
||||||
- name: "Build Arduino 1"
|
- name: "Build Arduino 1"
|
||||||
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
|
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
|
||||||
stage: build
|
stage: build
|
||||||
script: $TRAVIS_BUILD_DIR/tools/ci/build-tests.sh 1 4
|
script: $TRAVIS_BUILD_DIR/tools/ci/on-push.sh 1 4
|
||||||
|
|
||||||
- name: "Build Arduino 2"
|
- name: "Build Arduino 2"
|
||||||
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
|
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
|
||||||
stage: build
|
stage: build
|
||||||
script: $TRAVIS_BUILD_DIR/tools/ci/build-tests.sh 2 4
|
script: $TRAVIS_BUILD_DIR/tools/ci/on-push.sh 2 4
|
||||||
|
|
||||||
- name: "Build Arduino 3"
|
- name: "Build Arduino 3"
|
||||||
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
|
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
|
||||||
stage: build
|
stage: build
|
||||||
script: $TRAVIS_BUILD_DIR/tools/ci/build-tests.sh 3 4
|
script: $TRAVIS_BUILD_DIR/tools/ci/on-push.sh 3 4
|
||||||
|
|
||||||
- name: "Build PlatformIO"
|
- name: "Build PlatformIO"
|
||||||
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
|
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
|
||||||
stage: build
|
stage: build
|
||||||
script: $TRAVIS_BUILD_DIR/tools/ci/build-tests.sh 4 4
|
script: $TRAVIS_BUILD_DIR/tools/ci/on-push.sh 4 4
|
||||||
|
|
||||||
- name: "Package & Deploy"
|
- name: "Package & Deploy"
|
||||||
if: tag IS present
|
if: tag IS present
|
||||||
|
@ -1,64 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ ! -z "$TRAVIS_TAG" ]; then
|
|
||||||
echo "Skipping Test: Tagged build"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
CHUNK_INDEX=$1
|
|
||||||
CHUNKS_CNT=$2
|
|
||||||
BUILD_PIO=0
|
|
||||||
if [ "$#" -lt 2 ]; then
|
|
||||||
echo "Building all sketches"
|
|
||||||
CHUNK_INDEX=0
|
|
||||||
CHUNKS_CNT=1
|
|
||||||
BUILD_PIO=1
|
|
||||||
fi
|
|
||||||
if [ "$CHUNKS_CNT" -le 0 ]; then
|
|
||||||
CHUNK_INDEX=0
|
|
||||||
CHUNKS_CNT=1
|
|
||||||
BUILD_PIO=1
|
|
||||||
fi
|
|
||||||
if [ "$CHUNK_INDEX" -gt "$CHUNKS_CNT" ]; then
|
|
||||||
CHUNK_INDEX=$CHUNKS_CNT
|
|
||||||
fi
|
|
||||||
if [ "$CHUNK_INDEX" -eq "$CHUNKS_CNT" ]; then
|
|
||||||
BUILD_PIO=1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# CMake Test
|
|
||||||
if [ "$CHUNK_INDEX" -eq 0 ]; then
|
|
||||||
echo -e "travis_fold:start:check_cmakelists"
|
|
||||||
tools/ci/check-cmakelists.sh
|
|
||||||
if [ $? -ne 0 ]; then exit 1; fi
|
|
||||||
echo -e "travis_fold:end:check_cmakelists"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$BUILD_PIO" -eq 0 ]; then
|
|
||||||
# ArduinoIDE Test
|
|
||||||
echo -e "travis_fold:start:prep_arduino_ide"
|
|
||||||
tools/ci/prep-arduino-ide.sh
|
|
||||||
if [ $? -ne 0 ]; then exit 1; fi
|
|
||||||
echo -e "travis_fold:end:prep_arduino_ide"
|
|
||||||
|
|
||||||
echo -e "travis_fold:start:test_arduino_ide"
|
|
||||||
tools/ci/test-arduino-ide.sh $CHUNK_INDEX $CHUNKS_CNT
|
|
||||||
if [ $? -ne 0 ]; then exit 1; fi
|
|
||||||
echo -e "travis_fold:end:test_arduino_ide"
|
|
||||||
|
|
||||||
echo -e "travis_fold:start:size_report"
|
|
||||||
cat size.log
|
|
||||||
echo -e "travis_fold:end:size_report"
|
|
||||||
else
|
|
||||||
# PlatformIO Test
|
|
||||||
echo -e "travis_fold:start:prep_platformio"
|
|
||||||
cd tools && python get.py && cd ..
|
|
||||||
tools/ci/prep-platformio.sh
|
|
||||||
if [ $? -ne 0 ]; then exit 1; fi
|
|
||||||
echo -e "travis_fold:end:prep_platformio"
|
|
||||||
|
|
||||||
echo -e "travis_fold:start:test_platformio"
|
|
||||||
tools/ci/test-platformio.sh
|
|
||||||
if [ $? -ne 0 ]; then exit 1; fi
|
|
||||||
echo -e "travis_fold:end:test_platformio"
|
|
||||||
fi
|
|
@ -8,8 +8,6 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
cd "`dirname $0`/.." # cd to arduino-esp32 root
|
|
||||||
|
|
||||||
# pull all submodules
|
# pull all submodules
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
||||||
|
41
tools/ci/install-arduino-core-esp32.sh
Normal file
41
tools/ci/install-arduino-core-esp32.sh
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ ! -d "$ARDUINO_USR_PATH/hardware/espressif/esp32" ]; then
|
||||||
|
echo "Installing ESP32 Arduino Core in '$ARDUINO_USR_PATH/hardware/espressif/esp32'..."
|
||||||
|
script_init_path="$PWD"
|
||||||
|
mkdir -p "$ARDUINO_USR_PATH/hardware/espressif" && \
|
||||||
|
cd "$ARDUINO_USR_PATH/hardware/espressif"
|
||||||
|
if [ $? -ne 0 ]; then exit 1; fi
|
||||||
|
|
||||||
|
if [ "$GITHUB_REPOSITORY" == "espressif/arduino-esp32" ]; then
|
||||||
|
echo "Linking Core..." && \
|
||||||
|
ln -s $GITHUB_WORKSPACE esp32
|
||||||
|
else
|
||||||
|
echo "Cloning Core Repository..." && \
|
||||||
|
git clone https://github.com/espressif/arduino-esp32.git esp32 > /dev/null 2>&1
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: GIT clone failed"; exit 1; fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd esp32 && \
|
||||||
|
echo "Updating submodules..." && \
|
||||||
|
git submodule update --init --recursive > /dev/null 2>&1
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: Submodule update failed"; exit 1; fi
|
||||||
|
|
||||||
|
echo "Installing Python Serial..." && \
|
||||||
|
pip install pyserial > /dev/null
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: Install failed"; exit 1; fi
|
||||||
|
|
||||||
|
if [ "$OS_IS_WINDOWS" == "1" ]; then
|
||||||
|
echo "Installing Python Requests..."
|
||||||
|
pip install requests > /dev/null
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: Install failed"; exit 1; fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Downloading the tools and the toolchain..."
|
||||||
|
cd tools && python get.py > /dev/null
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: Download failed"; exit 1; fi
|
||||||
|
cd $script_init_path
|
||||||
|
|
||||||
|
echo "ESP32 Arduino has been installed in '$ARDUINO_USR_PATH/hardware/espressif/esp32'"
|
||||||
|
echo ""
|
||||||
|
fi
|
203
tools/ci/install-arduino-ide.sh
Normal file
203
tools/ci/install-arduino-ide.sh
Normal file
@ -0,0 +1,203 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#OSTYPE: 'linux-gnu', ARCH: 'x86_64' => linux64
|
||||||
|
#OSTYPE: 'msys', ARCH: 'x86_64' => win32
|
||||||
|
#OSTYPE: 'darwin18', ARCH: 'i386' => macos
|
||||||
|
|
||||||
|
OSBITS=`arch`
|
||||||
|
if [[ "$OSTYPE" == "linux"* ]]; then
|
||||||
|
export OS_IS_LINUX="1"
|
||||||
|
ARCHIVE_FORMAT="tar.xz"
|
||||||
|
if [[ "$OSBITS" == "i686" ]]; then
|
||||||
|
OS_NAME="linux32"
|
||||||
|
elif [[ "$OSBITS" == "x86_64" ]]; then
|
||||||
|
OS_NAME="linux64"
|
||||||
|
elif [[ "$OSBITS" == "armv7l" ]]; then
|
||||||
|
OS_NAME="linuxarm"
|
||||||
|
else
|
||||||
|
OS_NAME="$OSTYPE-$OSBITS"
|
||||||
|
echo "Unknown OS '$OS_NAME'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
elif [[ "$OSTYPE" == "darwin"* ]]; then
|
||||||
|
export OS_IS_MACOS="1"
|
||||||
|
ARCHIVE_FORMAT="zip"
|
||||||
|
OS_NAME="macosx"
|
||||||
|
elif [[ "$OSTYPE" == "cygwin" ]] || [[ "$OSTYPE" == "msys" ]] || [[ "$OSTYPE" == "win32" ]]; then
|
||||||
|
export OS_IS_WINDOWS="1"
|
||||||
|
ARCHIVE_FORMAT="zip"
|
||||||
|
OS_NAME="windows"
|
||||||
|
else
|
||||||
|
OS_NAME="$OSTYPE-$OSBITS"
|
||||||
|
echo "Unknown OS '$OS_NAME'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
export OS_NAME
|
||||||
|
|
||||||
|
ARDUINO_BUILD_DIR="$HOME/.arduino/build.tmp"
|
||||||
|
ARDUINO_CACHE_DIR="$HOME/.arduino/cache.tmp"
|
||||||
|
|
||||||
|
if [ "$OS_IS_MACOS" == "1" ]; then
|
||||||
|
export ARDUINO_IDE_PATH="/Applications/Arduino.app/Contents/Java"
|
||||||
|
export ARDUINO_USR_PATH="$HOME/Documents/Arduino"
|
||||||
|
else
|
||||||
|
export ARDUINO_IDE_PATH="$HOME/arduino_ide"
|
||||||
|
export ARDUINO_USR_PATH="$HOME/Arduino"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Installing Arduino IDE on $OS_NAME..."
|
||||||
|
|
||||||
|
if [ ! -d "$ARDUINO_IDE_PATH" ]; then
|
||||||
|
echo "Downloading 'arduino-nightly-$OS_NAME.$ARCHIVE_FORMAT' to 'arduino.$ARCHIVE_FORMAT'..."
|
||||||
|
if [ "$OS_IS_LINUX" == "1" ]; then
|
||||||
|
wget -O "arduino.$ARCHIVE_FORMAT" "https://www.arduino.cc/download.php?f=/arduino-nightly-$OS_NAME.$ARCHIVE_FORMAT" > /dev/null 2>&1
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: Download failed"; exit 1; fi
|
||||||
|
echo "Extracting 'arduino.$ARCHIVE_FORMAT'..."
|
||||||
|
tar xf "arduino.$ARCHIVE_FORMAT" > /dev/null
|
||||||
|
if [ $? -ne 0 ]; then exit 1; fi
|
||||||
|
mv arduino-nightly "$ARDUINO_IDE_PATH"
|
||||||
|
else
|
||||||
|
curl -o "arduino.$ARCHIVE_FORMAT" -L "https://www.arduino.cc/download.php?f=/arduino-nightly-$OS_NAME.$ARCHIVE_FORMAT" > /dev/null 2>&1
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: Download failed"; exit 1; fi
|
||||||
|
echo "Extracting 'arduino.$ARCHIVE_FORMAT'..."
|
||||||
|
unzip "arduino.$ARCHIVE_FORMAT" > /dev/null
|
||||||
|
if [ $? -ne 0 ]; then exit 1; fi
|
||||||
|
if [ "$OS_IS_MACOS" == "1" ]; then
|
||||||
|
mv "Arduino.app" "/Applications/Arduino.app"
|
||||||
|
else
|
||||||
|
mv arduino-nightly "$ARDUINO_IDE_PATH"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if [ $? -ne 0 ]; then exit 1; fi
|
||||||
|
rm -rf "arduino.$ARCHIVE_FORMAT"
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir -p "$ARDUINO_USR_PATH/libraries"
|
||||||
|
mkdir -p "$ARDUINO_USR_PATH/hardware"
|
||||||
|
|
||||||
|
function build_sketch(){ # build_sketch <fqbn> <path-to-ino> [extra-options]
|
||||||
|
local fqbn="$1"
|
||||||
|
local sketch="$2"
|
||||||
|
local xtra_opts="$3"
|
||||||
|
local win_opts=""
|
||||||
|
if [ "$OS_IS_WINDOWS" == "1" ]; then
|
||||||
|
local ctags_version=`ls "$ARDUINO_IDE_PATH/tools-builder/ctags/"`
|
||||||
|
local preprocessor_version=`ls "$ARDUINO_IDE_PATH/tools-builder/arduino-preprocessor/"`
|
||||||
|
win_opts="-prefs=runtime.tools.ctags.path=$ARDUINO_IDE_PATH/tools-builder/ctags/$ctags_version -prefs=runtime.tools.arduino-preprocessor.path=$ARDUINO_IDE_PATH/tools-builder/arduino-preprocessor/$preprocessor_version"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "Compiling '"$(basename "$sketch")"'..."
|
||||||
|
mkdir -p "$ARDUINO_BUILD_DIR"
|
||||||
|
mkdir -p "$ARDUINO_CACHE_DIR"
|
||||||
|
$ARDUINO_IDE_PATH/arduino-builder -compile -logger=human -core-api-version=10810 \
|
||||||
|
-fqbn=$fqbn \
|
||||||
|
-warnings="all" \
|
||||||
|
-tools "$ARDUINO_IDE_PATH/tools-builder" \
|
||||||
|
-tools "$ARDUINO_IDE_PATH/tools" \
|
||||||
|
-built-in-libraries "$ARDUINO_IDE_PATH/libraries" \
|
||||||
|
-hardware "$ARDUINO_IDE_PATH/hardware" \
|
||||||
|
-hardware "$ARDUINO_USR_PATH/hardware" \
|
||||||
|
-libraries "$ARDUINO_USR_PATH/libraries" \
|
||||||
|
-build-cache "$ARDUINO_CACHE_DIR" \
|
||||||
|
-build-path "$ARDUINO_BUILD_DIR" \
|
||||||
|
$win_opts $xtra_opts "$sketch"
|
||||||
|
}
|
||||||
|
|
||||||
|
function count_sketches() # count_sketches <examples-path>
|
||||||
|
{
|
||||||
|
local examples="$1"
|
||||||
|
local sketches=$(find $examples -name *.ino)
|
||||||
|
local sketchnum=0
|
||||||
|
rm -rf sketches.txt
|
||||||
|
for sketch in $sketches; do
|
||||||
|
local sketchdir=$(dirname $sketch)
|
||||||
|
local sketchdirname=$(basename $sketchdir)
|
||||||
|
local sketchname=$(basename $sketch)
|
||||||
|
if [[ "${sketchdirname}.ino" != "$sketchname" ]]; then
|
||||||
|
continue
|
||||||
|
fi;
|
||||||
|
if [[ -f "$sketchdir/.test.skip" ]]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
echo $sketch >> sketches.txt
|
||||||
|
sketchnum=$(($sketchnum + 1))
|
||||||
|
done
|
||||||
|
return $sketchnum
|
||||||
|
}
|
||||||
|
|
||||||
|
function build_sketches() # build_sketches <examples-path> <fqbn> <chunk> <total-chunks> [extra-options]
|
||||||
|
{
|
||||||
|
local examples=$1
|
||||||
|
local fqbn=$2
|
||||||
|
local chunk_idex=$3
|
||||||
|
local chunks_num=$4
|
||||||
|
local xtra_opts=$5
|
||||||
|
|
||||||
|
if [ "$chunks_num" -le 0 ]; then
|
||||||
|
echo "ERROR: Chunks count must be positive number"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
if [ "$chunk_idex" -ge "$chunks_num" ]; then
|
||||||
|
echo "ERROR: Chunk index must be less than chunks count"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
count_sketches "$examples"
|
||||||
|
local sketchcount=$?
|
||||||
|
local sketches=$(cat sketches.txt)
|
||||||
|
rm -rf sketches.txt
|
||||||
|
|
||||||
|
local chunk_size=$(( $sketchcount / $chunks_num ))
|
||||||
|
local all_chunks=$(( $chunks_num * $chunk_size ))
|
||||||
|
if [ "$all_chunks" -lt "$sketchcount" ]; then
|
||||||
|
chunk_size=$(( $chunk_size + 1 ))
|
||||||
|
fi
|
||||||
|
|
||||||
|
local start_index=$(( $chunk_idex * $chunk_size ))
|
||||||
|
if [ "$sketchcount" -le "$start_index" ]; then
|
||||||
|
echo "Skipping job"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
local end_index=$(( $(( $chunk_idex + 1 )) * $chunk_size ))
|
||||||
|
if [ "$end_index" -gt "$sketchcount" ]; then
|
||||||
|
end_index=$sketchcount
|
||||||
|
fi
|
||||||
|
|
||||||
|
local start_num=$(( $start_index + 1 ))
|
||||||
|
echo "Found $sketchcount Sketches";
|
||||||
|
echo "Chunk Count : $chunks_num"
|
||||||
|
echo "Chunk Size : $chunk_size"
|
||||||
|
echo "Start Sketch: $start_num"
|
||||||
|
echo "End Sketch : $end_index"
|
||||||
|
|
||||||
|
local sketchnum=0
|
||||||
|
for sketch in $sketches; do
|
||||||
|
local sketchdir=$(dirname $sketch)
|
||||||
|
local sketchdirname=$(basename $sketchdir)
|
||||||
|
local sketchname=$(basename $sketch)
|
||||||
|
if [ "${sketchdirname}.ino" != "$sketchname" ] \
|
||||||
|
|| [ -f "$sketchdir/.test.skip" ]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
sketchnum=$(($sketchnum + 1))
|
||||||
|
if [ "$sketchnum" -le "$start_index" ] \
|
||||||
|
|| [ "$sketchnum" -gt "$end_index" ]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
build_sketch "$fqbn" "$sketch" "$xtra_opts"
|
||||||
|
local result=$?
|
||||||
|
if [ $result -ne 0 ]; then
|
||||||
|
return $result
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "Arduino IDE Installed in '$ARDUINO_IDE_PATH'"
|
||||||
|
# echo "You can install boards in '$ARDUINO_IDE_PATH/hardware' or in '$ARDUINO_USR_PATH/hardware'"
|
||||||
|
# echo "User libraries should be installed in '$ARDUINO_USR_PATH/libraries'"
|
||||||
|
# echo "Then you can call 'build_sketch <fqbn> <path-to-ino> [extra-options]' to build your sketches"
|
||||||
|
echo ""
|
||||||
|
|
134
tools/ci/install-platformio-esp32.sh
Normal file
134
tools/ci/install-platformio-esp32.sh
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
echo "Installing Python Wheel..."
|
||||||
|
pip install wheel > /dev/null 2>&1
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: Install failed"; exit 1; fi
|
||||||
|
|
||||||
|
echo "Installing PlatformIO..."
|
||||||
|
pip install -U https://github.com/platformio/platformio/archive/develop.zip > /dev/null 2>&1
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: Install failed"; exit 1; fi
|
||||||
|
|
||||||
|
echo "Installing Platform ESP32..."
|
||||||
|
python -m platformio platform install https://github.com/platformio/platform-espressif32.git#feature/stage > /dev/null 2>&1
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: Install failed"; exit 1; fi
|
||||||
|
|
||||||
|
echo "Replacing the framework version..."
|
||||||
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
||||||
|
sed 's/https:\/\/github\.com\/espressif\/arduino-esp32\.git/*/' "$HOME/.platformio/platforms/espressif32/platform.json" > "platform.json" && \
|
||||||
|
mv -f "platform.json" "$HOME/.platformio/platforms/espressif32/platform.json"
|
||||||
|
else
|
||||||
|
sed -i 's/https:\/\/github\.com\/espressif\/arduino-esp32\.git/*/' "$HOME/.platformio/platforms/espressif32/platform.json"
|
||||||
|
fi
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: Replace failed"; exit 1; fi
|
||||||
|
|
||||||
|
if [ "$GITHUB_REPOSITORY" == "espressif/arduino-esp32" ]; then
|
||||||
|
echo "Linking Core..." && \
|
||||||
|
ln -s $GITHUB_WORKSPACE "$HOME/.platformio/packages/framework-arduinoespressif32"
|
||||||
|
else
|
||||||
|
echo "Cloning Core Repository..." && \
|
||||||
|
git clone https://github.com/espressif/arduino-esp32.git "$HOME/.platformio/packages/framework-arduinoespressif32" > /dev/null 2>&1
|
||||||
|
if [ $? -ne 0 ]; then echo "ERROR: GIT clone failed"; exit 1; fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "PlatformIO for ESP32 has been installed"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
|
||||||
|
function build_pio_sketch(){ # build_pio_sketch <board> <path-to-ino> [extra-options]
|
||||||
|
local board="$1"
|
||||||
|
local sketch="$2"
|
||||||
|
local sketch_dir=$(dirname "$sketch")
|
||||||
|
echo ""
|
||||||
|
echo "Compiling '"$(basename "$sketch")"'..."
|
||||||
|
python -m platformio ci --board "$board" "$sketch_dir" --project-option="board_build.partitions = huge_app.csv"
|
||||||
|
}
|
||||||
|
|
||||||
|
function count_sketches() # count_sketches <examples-path>
|
||||||
|
{
|
||||||
|
local examples="$1"
|
||||||
|
local sketches=$(find $examples -name *.ino)
|
||||||
|
local sketchnum=0
|
||||||
|
rm -rf sketches.txt
|
||||||
|
for sketch in $sketches; do
|
||||||
|
local sketchdir=$(dirname $sketch)
|
||||||
|
local sketchdirname=$(basename $sketchdir)
|
||||||
|
local sketchname=$(basename $sketch)
|
||||||
|
if [[ "${sketchdirname}.ino" != "$sketchname" ]]; then
|
||||||
|
continue
|
||||||
|
fi;
|
||||||
|
if [[ -f "$sketchdir/.test.skip" ]]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
echo $sketch >> sketches.txt
|
||||||
|
sketchnum=$(($sketchnum + 1))
|
||||||
|
done
|
||||||
|
return $sketchnum
|
||||||
|
}
|
||||||
|
|
||||||
|
function build_pio_sketches() # build_pio_sketches <examples-path> <board> <chunk> <total-chunks>
|
||||||
|
{
|
||||||
|
local examples=$1
|
||||||
|
local board=$2
|
||||||
|
local chunk_idex=$3
|
||||||
|
local chunks_num=$4
|
||||||
|
|
||||||
|
if [ "$chunks_num" -le 0 ]; then
|
||||||
|
echo "ERROR: Chunks count must be positive number"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
if [ "$chunk_idex" -ge "$chunks_num" ]; then
|
||||||
|
echo "ERROR: Chunk index must be less than chunks count"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
count_sketches "$examples"
|
||||||
|
local sketchcount=$?
|
||||||
|
local sketches=$(cat sketches.txt)
|
||||||
|
rm -rf sketches.txt
|
||||||
|
|
||||||
|
local chunk_size=$(( $sketchcount / $chunks_num ))
|
||||||
|
local all_chunks=$(( $chunks_num * $chunk_size ))
|
||||||
|
if [ "$all_chunks" -lt "$sketchcount" ]; then
|
||||||
|
chunk_size=$(( $chunk_size + 1 ))
|
||||||
|
fi
|
||||||
|
|
||||||
|
local start_index=$(( $chunk_idex * $chunk_size ))
|
||||||
|
if [ "$sketchcount" -le "$start_index" ]; then
|
||||||
|
echo "Skipping job"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
local end_index=$(( $(( $chunk_idex + 1 )) * $chunk_size ))
|
||||||
|
if [ "$end_index" -gt "$sketchcount" ]; then
|
||||||
|
end_index=$sketchcount
|
||||||
|
fi
|
||||||
|
|
||||||
|
local start_num=$(( $start_index + 1 ))
|
||||||
|
echo "Found $sketchcount Sketches";
|
||||||
|
echo "Chunk Count : $chunks_num"
|
||||||
|
echo "Chunk Size : $chunk_size"
|
||||||
|
echo "Start Sketch: $start_num"
|
||||||
|
echo "End Sketch : $end_index"
|
||||||
|
|
||||||
|
local sketchnum=0
|
||||||
|
for sketch in $sketches; do
|
||||||
|
local sketchdir=$(dirname $sketch)
|
||||||
|
local sketchdirname=$(basename $sketchdir)
|
||||||
|
local sketchname=$(basename $sketch)
|
||||||
|
if [ "${sketchdirname}.ino" != "$sketchname" ] \
|
||||||
|
|| [ -f "$sketchdir/.test.skip" ]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
sketchnum=$(($sketchnum + 1))
|
||||||
|
if [ "$sketchnum" -le "$start_index" ] \
|
||||||
|
|| [ "$sketchnum" -gt "$end_index" ]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
build_pio_sketch "$board" "$sketch"
|
||||||
|
local result=$?
|
||||||
|
if [ $result -ne 0 ]; then
|
||||||
|
return $result
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
return 0
|
||||||
|
}
|
56
tools/ci/on-push.sh
Executable file
56
tools/ci/on-push.sh
Executable file
@ -0,0 +1,56 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ ! -z "$TRAVIS_TAG" ]; then
|
||||||
|
echo "Skipping Test: Tagged build"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "$GITHUB_WORKSPACE" ]; then
|
||||||
|
export TRAVIS_BUILD_DIR="$GITHUB_WORKSPACE"
|
||||||
|
export TRAVIS_REPO_SLUG="$GITHUB_REPOSITORY"
|
||||||
|
elif [ ! -z "$TRAVIS_BUILD_DIR" ]; then
|
||||||
|
export GITHUB_WORKSPACE="$TRAVIS_BUILD_DIR"
|
||||||
|
export GITHUB_REPOSITORY="$TRAVIS_REPO_SLUG"
|
||||||
|
else
|
||||||
|
export GITHUB_WORKSPACE="$PWD"
|
||||||
|
export GITHUB_REPOSITORY="espressif/arduino-esp32"
|
||||||
|
fi
|
||||||
|
|
||||||
|
CHUNK_INDEX=$1
|
||||||
|
CHUNKS_CNT=$2
|
||||||
|
BUILD_PIO=0
|
||||||
|
if [ "$#" -lt 2 ] || [ "$CHUNKS_CNT" -le 0 ]; then
|
||||||
|
echo "Building all sketches"
|
||||||
|
CHUNK_INDEX=0
|
||||||
|
CHUNKS_CNT=1
|
||||||
|
fi
|
||||||
|
if [ "$CHUNK_INDEX" -gt "$CHUNKS_CNT" ]; then
|
||||||
|
CHUNK_INDEX=$CHUNKS_CNT
|
||||||
|
fi
|
||||||
|
if [ "$CHUNK_INDEX" -eq "$CHUNKS_CNT" ]; then
|
||||||
|
BUILD_PIO=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# CMake Test
|
||||||
|
if [ "$CHUNK_INDEX" -eq 0 ]; then
|
||||||
|
bash ./tools/ci/check-cmakelists.sh
|
||||||
|
if [ $? -ne 0 ]; then exit 1; fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$BUILD_PIO" -eq 0 ]; then
|
||||||
|
# ArduinoIDE Test
|
||||||
|
source ./tools/ci/install-arduino-ide.sh
|
||||||
|
source ./tools/ci/install-arduino-core-esp32.sh
|
||||||
|
build_sketches "$GITHUB_WORKSPACE/libraries" "espressif:esp32:esp32:PSRAM=enabled,PartitionScheme=huge_app" "$CHUNK_INDEX" "$CHUNKS_CNT"
|
||||||
|
else
|
||||||
|
# PlatformIO Test
|
||||||
|
source ./tools/ci/install-platformio-esp32.sh
|
||||||
|
python -m platformio ci --board esp32dev libraries/WiFi/examples/WiFiClient && \
|
||||||
|
python -m platformio ci --board esp32dev libraries/WiFiClientSecure/examples/WiFiClientSecure && \
|
||||||
|
python -m platformio ci --board esp32dev libraries/BluetoothSerial/examples/SerialToSerialBT && \
|
||||||
|
python -m platformio ci --board esp32dev libraries/BLE/examples/BLE_server && \
|
||||||
|
python -m platformio ci --board esp32dev libraries/AzureIoT/examples/GetStarted && \
|
||||||
|
python -m platformio ci --board esp32dev libraries/ESP32/examples/Camera/CameraWebServer --project-option="board_build.partitions = huge_app.csv"
|
||||||
|
#build_pio_sketches libraries esp32dev $CHUNK_INDEX $CHUNKS_CNT
|
||||||
|
if [ $? -ne 0 ]; then exit 1; fi
|
||||||
|
fi
|
@ -1,13 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
pip install pyserial
|
|
||||||
wget -O arduino.tar.xz https://www.arduino.cc/download.php?f=/arduino-nightly-linux64.tar.xz
|
|
||||||
tar xf arduino.tar.xz
|
|
||||||
mv arduino-nightly $HOME/arduino_ide
|
|
||||||
mkdir -p $HOME/Arduino/libraries
|
|
||||||
mkdir -p $HOME/Arduino/hardware/espressif
|
|
||||||
cd $HOME/Arduino/hardware/espressif
|
|
||||||
|
|
||||||
ln -s $TRAVIS_BUILD_DIR esp32
|
|
||||||
cd esp32/tools
|
|
||||||
python get.py
|
|
@ -1,6 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
pip install -U https://github.com/platformio/platformio/archive/develop.zip && \
|
|
||||||
python -m platformio platform install https://github.com/platformio/platform-espressif32.git#feature/stage && \
|
|
||||||
sed -i 's/https:\/\/github\.com\/espressif\/arduino-esp32\.git/*/' ~/.platformio/platforms/espressif32/platform.json && \
|
|
||||||
ln -s $TRAVIS_BUILD_DIR ~/.platformio/packages/framework-arduinoespressif32
|
|
@ -1,170 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
CHUNK_INDEX=$1
|
|
||||||
CHUNKS_CNT=$2
|
|
||||||
if [ "$#" -lt 2 ]; then
|
|
||||||
echo "Building all sketches"
|
|
||||||
CHUNK_INDEX=0
|
|
||||||
CHUNKS_CNT=1
|
|
||||||
fi
|
|
||||||
if [ "$CHUNKS_CNT" -le 0 ]; then
|
|
||||||
echo "Chunks count must be positive number"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
if [ "$CHUNK_INDEX" -ge "$CHUNKS_CNT" ]; then
|
|
||||||
echo "Chunk index must be less than chunks count"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
export ARDUINO_BOARD_FQBN="espressif:esp32:esp32:PSRAM=enabled,PartitionScheme=huge_app,CPUFreq=240,FlashMode=qio,FlashFreq=80,FlashSize=4M,UploadSpeed=921600,DebugLevel=none"
|
|
||||||
|
|
||||||
export ARDUINO_IDE_PATH=$HOME/arduino_ide
|
|
||||||
export ARDUINO_USR_PATH=$HOME/Arduino
|
|
||||||
|
|
||||||
export EXAMPLES_PATH=$TRAVIS_BUILD_DIR/libraries
|
|
||||||
export EXAMPLES_BUILD_DIR=$HOME/build.tmp
|
|
||||||
export EXAMPLES_CACHE_DIR=$HOME/cache.tmp
|
|
||||||
export EXAMPLES_BUILD_CMD="$ARDUINO_IDE_PATH/arduino-builder -compile -logger=human -core-api-version=\"10810\" -hardware \"$ARDUINO_IDE_PATH/hardware\" -hardware \"$ARDUINO_USR_PATH/hardware\" -tools \"$ARDUINO_IDE_PATH/tools-builder\" -built-in-libraries \"$ARDUINO_IDE_PATH/libraries\" -libraries \"$ARDUINO_USR_PATH/libraries\" -fqbn=$ARDUINO_BOARD_FQBN -warnings=\"all\" -build-cache \"$EXAMPLES_CACHE_DIR\" -build-path \"$EXAMPLES_BUILD_DIR\" -verbose"
|
|
||||||
export EXAMPLES_SIZE_BIN=$TRAVIS_BUILD_DIR/tools/xtensa-esp32-elf/bin/xtensa-esp32-elf-size
|
|
||||||
|
|
||||||
function print_size_info()
|
|
||||||
{
|
|
||||||
elf_file=$1
|
|
||||||
|
|
||||||
if [ -z "$elf_file" ]; then
|
|
||||||
printf "sketch iram0.text flash.text flash.rodata dram0.data dram0.bss dram flash\n"
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
elf_name=$(basename $elf_file)
|
|
||||||
sketch_name="${elf_name%.*}"
|
|
||||||
# echo $sketch_name
|
|
||||||
declare -A segments
|
|
||||||
while read -a tokens; do
|
|
||||||
seg=${tokens[0]}
|
|
||||||
seg=${seg//./}
|
|
||||||
size=${tokens[1]}
|
|
||||||
addr=${tokens[2]}
|
|
||||||
if [ "$addr" -eq "$addr" -a "$addr" -ne "0" ] 2>/dev/null; then
|
|
||||||
segments[$seg]=$size
|
|
||||||
fi
|
|
||||||
done < <($EXAMPLES_SIZE_BIN --format=sysv $elf_file)
|
|
||||||
|
|
||||||
total_ram=$((${segments[dram0data]} + ${segments[dram0bss]}))
|
|
||||||
total_flash=$((${segments[iram0text]} + ${segments[flashtext]} + ${segments[dram0data]} + ${segments[flashrodata]}))
|
|
||||||
printf "%-32s %-8d %-8d %-8d %-8d %-8d %-8d %-8d\n" $sketch_name ${segments[iram0text]} ${segments[flashtext]} ${segments[flashrodata]} ${segments[dram0data]} ${segments[dram0bss]} $total_ram $total_flash
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
function build_sketch()
|
|
||||||
{
|
|
||||||
local sketch=$1
|
|
||||||
echo -e "\n------------ Building $sketch ------------\n";
|
|
||||||
rm -rf $EXAMPLES_BUILD_DIR/*
|
|
||||||
time ($EXAMPLES_BUILD_CMD $sketch >build.log)
|
|
||||||
local result=$?
|
|
||||||
if [ $result -ne 0 ]; then
|
|
||||||
echo "Build failed ($1)"
|
|
||||||
echo "Build log:"
|
|
||||||
cat build.log
|
|
||||||
return $result
|
|
||||||
fi
|
|
||||||
rm build.log
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
function count_sketches()
|
|
||||||
{
|
|
||||||
local sketches=$(find $EXAMPLES_PATH -name *.ino)
|
|
||||||
local sketchnum=0
|
|
||||||
rm -rf sketches.txt
|
|
||||||
for sketch in $sketches; do
|
|
||||||
local sketchdir=$(dirname $sketch)
|
|
||||||
local sketchdirname=$(basename $sketchdir)
|
|
||||||
local sketchname=$(basename $sketch)
|
|
||||||
if [[ "${sketchdirname}.ino" != "$sketchname" ]]; then
|
|
||||||
continue
|
|
||||||
fi;
|
|
||||||
if [[ -f "$sketchdir/.test.skip" ]]; then
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
echo $sketch >> sketches.txt
|
|
||||||
sketchnum=$(($sketchnum + 1))
|
|
||||||
done
|
|
||||||
return $sketchnum
|
|
||||||
}
|
|
||||||
|
|
||||||
function build_sketches()
|
|
||||||
{
|
|
||||||
mkdir -p $EXAMPLES_BUILD_DIR
|
|
||||||
mkdir -p $EXAMPLES_CACHE_DIR
|
|
||||||
mkdir -p $ARDUINO_USR_PATH/libraries
|
|
||||||
mkdir -p $ARDUINO_USR_PATH/hardware
|
|
||||||
|
|
||||||
local chunk_idex=$1
|
|
||||||
local chunks_num=$2
|
|
||||||
count_sketches
|
|
||||||
local sketchcount=$?
|
|
||||||
local sketches=$(cat sketches.txt)
|
|
||||||
|
|
||||||
local chunk_size=$(( $sketchcount / $chunks_num ))
|
|
||||||
local all_chunks=$(( $chunks_num * $chunk_size ))
|
|
||||||
if [ "$all_chunks" -lt "$sketchcount" ]; then
|
|
||||||
chunk_size=$(( $chunk_size + 1 ))
|
|
||||||
fi
|
|
||||||
|
|
||||||
local start_index=$(( $chunk_idex * $chunk_size ))
|
|
||||||
if [ "$sketchcount" -le "$start_index" ]; then
|
|
||||||
echo "Skipping job"
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
local end_index=$(( $(( $chunk_idex + 1 )) * $chunk_size ))
|
|
||||||
if [ "$end_index" -gt "$sketchcount" ]; then
|
|
||||||
end_index=$sketchcount
|
|
||||||
fi
|
|
||||||
|
|
||||||
local start_num=$(( $start_index + 1 ))
|
|
||||||
#echo -e "Sketches: \n$sketches\n"
|
|
||||||
echo "Found $sketchcount Sketches";
|
|
||||||
echo "Chunk Count : $chunks_num"
|
|
||||||
echo "Chunk Size : $chunk_size"
|
|
||||||
echo "Start Sketch: $start_num"
|
|
||||||
echo "End Sketch : $end_index"
|
|
||||||
|
|
||||||
local sketchnum=0
|
|
||||||
print_size_info >size.log
|
|
||||||
for sketch in $sketches; do
|
|
||||||
local sketchdir=$(dirname $sketch)
|
|
||||||
local sketchdirname=$(basename $sketchdir)
|
|
||||||
local sketchname=$(basename $sketch)
|
|
||||||
if [[ "${sketchdirname}.ino" != "$sketchname" ]]; then
|
|
||||||
#echo "Skipping $sketch, beacause it is not the main sketch file";
|
|
||||||
continue
|
|
||||||
fi;
|
|
||||||
if [[ -f "$sketchdir/.test.skip" ]]; then
|
|
||||||
#echo "Skipping $sketch marked";
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
sketchnum=$(($sketchnum + 1))
|
|
||||||
if [ "$sketchnum" -le "$start_index" ]; then
|
|
||||||
#echo "Skipping $sketch index low"
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
if [ "$sketchnum" -gt "$end_index" ]; then
|
|
||||||
#echo "Skipping $sketch index high"
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
build_sketch $sketch
|
|
||||||
local result=$?
|
|
||||||
if [ $result -ne 0 ]; then
|
|
||||||
return $result
|
|
||||||
fi
|
|
||||||
print_size_info $EXAMPLES_BUILD_DIR/*.elf >>size.log
|
|
||||||
done
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
build_sketches $CHUNK_INDEX $CHUNKS_CNT
|
|
||||||
|
|
||||||
if [ $? -ne 0 ]; then exit 1; fi
|
|
@ -1,9 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
python -m platformio ci --board esp32dev libraries/WiFi/examples/WiFiClient && \
|
|
||||||
python -m platformio ci --board esp32dev libraries/WiFiClientSecure/examples/WiFiClientSecure && \
|
|
||||||
python -m platformio ci --board esp32dev libraries/BluetoothSerial/examples/SerialToSerialBT && \
|
|
||||||
python -m platformio ci --board esp32dev libraries/BLE/examples/BLE_server && \
|
|
||||||
python -m platformio ci --board esp32dev libraries/AzureIoT/examples/GetStarted && \
|
|
||||||
python -m platformio ci --board esp32dev libraries/ESP32/examples/Camera/CameraWebServer --project-option="board_build.partitions = huge_app.csv"
|
|
||||||
if [ $? -ne 0 ]; then exit 1; fi
|
|
Loading…
Reference in New Issue
Block a user