Skip to content

Commit a192eab

Browse files
authored
Merge pull request #12 from SiliconLabsSoftware/reduce-artifact-retention-days
Reduce artifact retention days to 1 day
2 parents d2034f4 + 2841308 commit a192eab

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/00-Check-Code-Convention.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ jobs:
7575
with:
7676
name: CodingConventionResult
7777
path: CodingConventionTool.txt
78-
retention-days: 90
78+
retention-days: 1
7979
- name: Upload Patch
8080
uses: actions/upload-artifact@v4.3.4
8181
with:
8282
name: code-fix.patch
8383
path: code-fix.patch
84-
retention-days: 90
84+
retention-days: 1
8585
- name: Check log file to set status of the job
8686
run: |
8787
keywords=("Failed")

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ jobs:
6161
uses: actions/upload-artifact@v5
6262
with:
6363
name: sisdk-and-extensions
64-
path: .
64+
path: src
6565
include-hidden-files: true
66+
retention-days: 1 # keep the artifacts for 1 day
6667

6768
get-tools:
6869
runs-on: ubuntu-latest
@@ -82,8 +83,8 @@ jobs:
8283
uses: actions/upload-artifact@v5
8384
with:
8485
name: arm-gnu-toolchain-and-slc
85-
path: .
86-
include-hidden-files: true
86+
path: tools
87+
retention-days: 1 # keep the artifacts for 1 day
8788

8889
build:
8990
runs-on: ubuntu-latest
@@ -96,13 +97,13 @@ jobs:
9697
uses: actions/download-artifact@v5
9798
with:
9899
name: sisdk-and-extensions
99-
path: .
100+
path: src
100101

101102
- name: Download ARM-GNU and SLC toolchain
102103
uses: actions/download-artifact@v5
103104
with:
104105
name: arm-gnu-toolchain-and-slc
105-
path: .
106+
path: tools
106107

107108
- name: Install Java 21
108109
uses: actions/setup-java@v4

0 commit comments

Comments
 (0)