Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test_autosd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
repository-cache: true
cache-save: ${{ github.event_name == 'push' }}
cache-save: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
- name: Shows kernel version
run: |
uname -a
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test_ebclfsa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
repository-cache: true
cache-save: ${{ github.event_name == 'push' }}
cache-save: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
- name: Build for EB corbos Linux for Safety Applications and run tests
run: |
bazel build --lockfile_mode=error --config=eb-aarch64 //images/ebclfsa_aarch64:run
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
repository-cache: true
cache-save: ${{ github.event_name == 'push' }}
cache-save: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
- name: Install uv (required for SBOM license scanning)
uses: astral-sh/setup-uv@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test_qnx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
disk-cache: ${{ github.workflow }}
repository-cache: true
bazelisk-cache: true
cache-save: ${{ github.event_name == 'push' }}
cache-save: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
- name: Prepare QNX license
env:
SCORE_QNX_LICENSE: ${{ secrets.SCORE_QNX_LICENSE }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_release_approvals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
repository-cache: true
cache-save: ${{ github.event_name == 'push' }}
cache-save: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
- name: Check Release Approvals
id: check-approvals
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reusable_integration-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ jobs:
disk-cache: ${{ inputs.config }}
# Share repository cache between workflows.
repository-cache: true
cache-save: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
- name: Update known good commits
run: |
echo "::group::write known_good.json from input"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_and_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
repository-cache: true
cache-save: ${{ github.event_name == 'push' }}
cache-save: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
- name: Set up Python 3
uses: actions/setup-python@v5
with:
Expand Down
Loading