Configure CI Pipeline to just run PlatformIO
This commit is contained in:
23
.github/workflows/test-builds.yml
vendored
23
.github/workflows/test-builds.yml
vendored
@@ -146,13 +146,20 @@ jobs:
|
|||||||
pip install -U https://github.com/platformio/platformio-core/archive/develop.zip
|
pip install -U https://github.com/platformio/platformio-core/archive/develop.zip
|
||||||
platformio update
|
platformio update
|
||||||
|
|
||||||
- name: Check out the PR
|
#- name: Check out the PR
|
||||||
uses: actions/checkout@v2
|
# uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Run ${{ matrix.test-platform }} Tests
|
#- name: Run ${{ matrix.test-platform }} Tests
|
||||||
|
# run: |
|
||||||
|
# # Inline tests script
|
||||||
|
# chmod +x buildroot/bin/*
|
||||||
|
# chmod +x buildroot/tests/*
|
||||||
|
# export PATH=./buildroot/bin/:./buildroot/tests/:${PATH}
|
||||||
|
# run_tests . ${{ matrix.test-platform }}
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
# Inline tests script
|
python -m pip install --upgrade pip
|
||||||
chmod +x buildroot/bin/*
|
pip install platformio
|
||||||
chmod +x buildroot/tests/*
|
- name: Run PlatformIO
|
||||||
export PATH=./buildroot/bin/:./buildroot/tests/:${PATH}
|
run: platformio run ${{ matrix.test-platform }}
|
||||||
run_tests . ${{ matrix.test-platform }}
|
|
Reference in New Issue
Block a user