From 6137284b06cb2c025bce11716d2b0928bd4e8c0f Mon Sep 17 00:00:00 2001 From: umbynos Date: Tue, 27 Oct 2020 12:08:38 +0100 Subject: [PATCH 1/4] add ci step to upload artifacts --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db5450ddd..291c47a17 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,6 +51,13 @@ jobs: - name: Run unit tests run: task test-unit + - name: Upload artifacts + uses: actions/upload-artifact@v2 + with: + name: arduino-create-agent-${{ matrix.operating-system }} + path: arduino-create-agent + if-no-files-found: error + # - name: Send unit tests coverage to Codecov # if: > # matrix.operating-system == 'ubuntu-latest' && From c74ad14831853bd0182b0b910c017f0fee09d656 Mon Sep 17 00:00:00 2001 From: umbynos Date: Tue, 27 Oct 2020 12:57:15 +0100 Subject: [PATCH 2/4] add ls --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 291c47a17..bc5695d87 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,6 +51,9 @@ jobs: - name: Run unit tests run: task test-unit + - name: Check dir content + run: ls + - name: Upload artifacts uses: actions/upload-artifact@v2 with: From 0fb131dab424e6234aa8f211e3fb227f9885a807 Mon Sep 17 00:00:00 2001 From: umbynos Date: Tue, 27 Oct 2020 13:19:21 +0100 Subject: [PATCH 3/4] fix for win --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bc5695d87..6d9f24a85 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -58,7 +58,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: arduino-create-agent-${{ matrix.operating-system }} - path: arduino-create-agent + path: arduino-create-agent* if-no-files-found: error # - name: Send unit tests coverage to Codecov From 727929b65a689f14d57230274d99b5f7cf7e1f00 Mon Sep 17 00:00:00 2001 From: umbynos Date: Tue, 27 Oct 2020 13:25:17 +0100 Subject: [PATCH 4/4] Revert "add ls" This reverts commit c74ad14831853bd0182b0b910c017f0fee09d656. --- .github/workflows/test.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6d9f24a85..d9b23ab54 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,9 +51,6 @@ jobs: - name: Run unit tests run: task test-unit - - name: Check dir content - run: ls - - name: Upload artifacts uses: actions/upload-artifact@v2 with: