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
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
if: inputs.run-codeql != true
run: scripts/run_in_build_env.sh "ninja -C ./out"
- name: Uploading core files
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-core-linux-gcc-debug
Expand All @@ -127,7 +127,7 @@ jobs:
# If re-enabling, some subset of this should be picked
#
# - name: Uploading objdir for debugging
# uses: actions/upload-artifact@v5
# uses: actions/upload-artifact@v6
# if: ${{ failure() && !env.ACT }}
# with:
# name: crash-objdir-linux-gcc-debug
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
# language: cpp

- name: Uploading core files
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-core-linux
Expand All @@ -300,7 +300,7 @@ jobs:
# If re-enabling, some subset of this should be picked
#
# - name: Uploading objdir for debugging
# uses: actions/upload-artifact@v5
# uses: actions/upload-artifact@v6
# if: ${{ failure() && !env.ACT }}
# with:
# name: crash-objdir-linux
Expand Down Expand Up @@ -476,7 +476,7 @@ jobs:
check \
"
- name: Uploading diagnostic logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-log-darwin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cirque.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:


- name: Uploading Binaries
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ always() && !env.ACT }}
with:
name: cirque_log-${{steps.outsuffix.outputs.value}}-logs
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/darwin-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,27 +139,27 @@ jobs:
--ota-candidate-file /tmp/otaCandidateJSON \
"
- name: Uploading core files
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-core-darwin-${{ matrix.build_variant }}
path: /cores/
# Cores are big; don't hold on to them too long.
retention-days: 5
- name: Uploading diagnostic logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-log-darwin-${{ matrix.build_variant }}
path: ~/Library/Logs/DiagnosticReports/
- name: Uploading framework build log
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: framework-build-log-darwin-${BUILD_VARIANT_FRAMEWORK_TOOL}
path: out/darwin-${{matrix.arch}}-darwin-framework-tool-${BUILD_VARIANT_FRAMEWORK_TOOL}/darwin_framework_build.log
- name: Uploading objdir for debugging
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-objdir-darwin-${{ matrix.build_variant }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
mkdir -p /tmp/darwin/framework-tests
find ~/Library/Developer/Xcode/DerivedData /Library/Logs/DiagnosticReports -name '*.ips' -print0 | xargs -0 -J % cp % /tmp/darwin/framework-tests
- name: Uploading log files
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: failure() && !env.ACT
with:
name: darwin-framework-test-logs-${{ matrix.options.flavor }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples-nrfconnect.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
run: |
scripts/run_in_build_env.sh "source $ZEPHYR_BASE/zephyr-env.sh && pip3 install -r scripts/setup/requirements.build.txt && ./scripts/build/build_examples.py --target nrf-native-sim-tests build"
- name: Uploading Failed Test Logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: test-log
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fuzzing-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
--copy-artifacts-to objdir-clone \
"
- name: Uploading binaries
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ !env.ACT }}
with:
name: objdir-linux
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
--copy-artifacts-to objdir-clone \
"
- name: Uploading binaries
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ !env.ACT }}
with:
name: crash-darwin
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/java-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -351,15 +351,15 @@ jobs:
--factoryreset \
'
- name: Uploading core files
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-core-linux-java-controller
path: /tmp/cores/
# Cores are big; don't hold on to them too long.
retention-days: 5
- name: Uploading objdir for debugging
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-objdir-linux-java-controller
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nrfconnect-ncs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
rm -rf out/nrf-native-sim-tests
rm -rf src/test_driver/nrfconnect/build
- name: Uploading Failed Test Logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: test-log
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qemu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
--verbose \
--file-image-list ./out/esp32-qemu-tests/test_images.txt
- name: Uploading Logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ !env.ACT }}
with:
name: qemu-esp32-logs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/recent_fail_summary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
branch: daily_pass_percentage
- name: Upload Logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: workflow-fail-summary
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: github.event.inputs.publishRelease == 'false'
with:
path: /tmp/output_binaries
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -421,15 +421,15 @@ jobs:
--energy-management-app ./out/linux-x64-energy-management-${BUILD_VARIANT}/chip-energy-management-app \
"
- name: Uploading core files
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-core-linux-${{ matrix.build_variant }}${{ matrix.chip_tool }}
path: /tmp/cores/
# Cores are big; don't hold on to them too long.
retention-days: 5
- name: Uploading objdir for debugging
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-objdir-linux-${{ matrix.build_variant }}${{ matrix.chip_tool }}
Expand Down Expand Up @@ -550,21 +550,21 @@ jobs:
"

- name: Uploading core files
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-core-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }}
path: /cores/
# Cores are big; don't hold on to them too long.
retention-days: 5
- name: Uploading diagnostic logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-log-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }}
path: ~/Library/Logs/DiagnosticReports/
- name: Uploading objdir for debugging
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-objdir-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }}
Expand Down Expand Up @@ -909,15 +909,15 @@ jobs:
"

- name: Uploading core files
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-core-linux-python-repl
path: /tmp/cores/
# Cores are big; don't hold on to them too long.
retention-days: 5
- name: Uploading objdir for debugging
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-objdir-linux-python-repl
Expand Down Expand Up @@ -991,28 +991,28 @@ jobs:
run: |
scripts/run_in_python_env.sh out/venv './scripts/tests/run_python_test.py --app out/darwin-${{matrix.arch}}-all-clusters-no-ble-no-wifi-tsan-clang-test/chip-all-clusters-app --factory-reset --quiet --app-args "--discriminator 3840 --interface-id -1" --script-args "-t 3600 --disable-test ClusterObjectTests.TestTimedRequestTimeout"'
- name: Uploading core files
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-core-darwin-python-repl
path: /cores/
# Cores are big; don't hold on to them too long.
retention-days: 5
- name: Uploading traces on failure
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: trace-data-python-repl
path: out/trace_data/
retention-days: 5
- name: Uploading diagnostic logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-log-darwin-python-repl
path: ~/Library/Logs/DiagnosticReports/
- name: Uploading objdir for debugging
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() && !env.ACT }}
with:
name: crash-objdir-darwin-python-repl
Expand Down
Loading