From b175d67e573cfabb355a07644204fdbb9d4eced5 Mon Sep 17 00:00:00 2001 From: Knutwurst <36196269+knutwurst@users.noreply.github.com> Date: Thu, 3 Sep 2020 16:11:39 +0200 Subject: [PATCH] Configure CI Pipeline to just run PlatformIO --- .github/workflows/test-builds.yml | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test-builds.yml b/.github/workflows/test-builds.yml index 52e823e4..f0c74680 100755 --- a/.github/workflows/test-builds.yml +++ b/.github/workflows/test-builds.yml @@ -146,13 +146,20 @@ jobs: pip install -U https://github.com/platformio/platformio-core/archive/develop.zip platformio update - - name: Check out the PR - uses: actions/checkout@v2 + #- name: Check out the PR + # 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: | - # Inline tests script - chmod +x buildroot/bin/* - chmod +x buildroot/tests/* - export PATH=./buildroot/bin/:./buildroot/tests/:${PATH} - run_tests . ${{ matrix.test-platform }} + python -m pip install --upgrade pip + pip install platformio + - name: Run PlatformIO + run: platformio run ${{ matrix.test-platform }} \ No newline at end of file