From 2841308a306983fdb5f2142fb9e6f319a2f34fc9 Mon Sep 17 00:00:00 2001 From: silabs-JeevanRH Date: Wed, 26 Nov 2025 11:42:54 +0530 Subject: [PATCH] Reduce artifact retention days to 1 day and add include-hidden-files to SDK artifact upload --- .github/workflows/00-Check-Code-Convention.yml | 4 ++-- .github/workflows/ci.yml | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/00-Check-Code-Convention.yml b/.github/workflows/00-Check-Code-Convention.yml index 7047154..f1b94f4 100644 --- a/.github/workflows/00-Check-Code-Convention.yml +++ b/.github/workflows/00-Check-Code-Convention.yml @@ -75,13 +75,13 @@ jobs: with: name: CodingConventionResult path: CodingConventionTool.txt - retention-days: 90 + retention-days: 1 - name: Upload Patch uses: actions/upload-artifact@v4.3.4 with: name: code-fix.patch path: code-fix.patch - retention-days: 90 + retention-days: 1 - name: Check log file to set status of the job run: | keywords=("Failed") diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 61434e6..3df655f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,8 +61,9 @@ jobs: uses: actions/upload-artifact@v5 with: name: sisdk-and-extensions - path: . + path: src include-hidden-files: true + retention-days: 1 # keep the artifacts for 1 day get-tools: runs-on: ubuntu-latest @@ -82,8 +83,8 @@ jobs: uses: actions/upload-artifact@v5 with: name: arm-gnu-toolchain-and-slc - path: . - include-hidden-files: true + path: tools + retention-days: 1 # keep the artifacts for 1 day build: runs-on: ubuntu-latest @@ -96,13 +97,13 @@ jobs: uses: actions/download-artifact@v5 with: name: sisdk-and-extensions - path: . + path: src - name: Download ARM-GNU and SLC toolchain uses: actions/download-artifact@v5 with: name: arm-gnu-toolchain-and-slc - path: . + path: tools - name: Install Java 21 uses: actions/setup-java@v4