From 8142a6b14446038bc64b389ca9ff2e24f91fcc93 Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Fri, 28 Apr 2023 19:31:21 +0200 Subject: [PATCH] download artifact and use it --- .github/workflows/build_check.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_check.yml b/.github/workflows/build_check.yml index d092c16..cb5ec11 100644 --- a/.github/workflows/build_check.yml +++ b/.github/workflows/build_check.yml @@ -126,11 +126,6 @@ jobs: - board: 'board2' port: '/dev/ttyUSB2' steps: - - name: Setup Cache - uses: actions/cache@v3 - with: - path: .pio - key: hw-cache - name: Install PlatformIO shell: bash run: | @@ -138,5 +133,9 @@ jobs: pip install --upgrade platformio - name: Checkout code uses: actions/checkout@v3 + - name: Download a single artifact + uses: actions/download-artifact@v3 + with: + name: build_folder - name: PlatformIO Test - run: pio test -vv --upload-port ${{ matrix.port }} --test-port ${{ matrix.port }} + run: pio test -vv --without-building --upload-port ${{ matrix.port }} --test-port ${{ matrix.port }}