Skip to content

Commit

Permalink
Fix other error
Browse files Browse the repository at this point in the history
  • Loading branch information
non-det-alle committed Mar 21, 2024
1 parent 0f7f194 commit 1ff216c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ runs:
- name: "Build ns-3"
shell: bash
run: ./ns3 build
- name: "Show ccache stats"
shell: bash
run: ccache -s
# Manage inter-run placeholder for running tests
- name: "Get cache miss rate"
shell: bash
Expand All @@ -50,7 +53,7 @@ runs:
with:
name: ${{ format('{0}{1}', 'tests-', env.BUILD_ID) }}
path: build/tests-*.txt
retention-days: 90
retention-days: 60
# Post-build steps
#- if: inputs.store-artifacts == 'true'
# name: "Tar files to preserve permissions"
Expand All @@ -63,6 +66,3 @@ runs:
# name: ${{ env.BUILD_ID }}
# path: build.tzst
# retention-days: 2
- name: "Show ccache stats"
shell: bash
run: ccache -s
3 changes: 1 addition & 2 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ runs:
using: "composite"
steps:
- name: "Download tests placeholder"
shell: bash
uses: actions/download-artifact@v4
with:
name: ${{ format('{0}{1}', 'tests-', env.BUILD_ID) }}
Expand All @@ -25,4 +24,4 @@ runs:
with:
name: ${{ format('{0}{1}', 'tests-', env.BUILD_ID) }}
path: build/tests-*.txt
retention-days: 90
retention-days: 60

0 comments on commit 1ff216c

Please sign in to comment.