Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/00-Check-Code-Convention.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
Loading