Skip to content

Commit 7918603

Browse files
committed
TEST: fix action
1 parent d387852 commit 7918603

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/kernel-test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,13 @@ jobs:
8383
# it was extracted from the artifacts.
8484
kbuild-output: ${{ env.REPO_ROOT }}/kbuild-output
8585
toolchain_full: ${{ inputs.toolchain_full }}
86+
- if: ${{ always() }}
87+
name: Find tmon logs
88+
shell: bash
89+
run: ls -l /tmp/
90+
- if: ${{ always() }}
91+
uses: actions/upload-artifact@v4
92+
with:
93+
name: tmon-logs-${{ inputs.arch }}-${{ inputs.toolchain_full }}${{ inputs.kernel-test }}
94+
if-no-files-found: error
95+
path: /tmp/tmon_pcap/*

run-vmtest/action.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ inputs:
3131
description: 'Release version of vmtest tool to use'
3232
required: false
3333
default: 'v0.15.0'
34-
toolchain_full:
35-
required: true
36-
type: string
37-
description: The toolchain, e.g gcc, llvm
3834

3935
runs:
4036
using: "composite"
@@ -80,9 +76,4 @@ runs:
8076
VMLINUZ: ${{ inputs.vmlinuz || '' }}
8177
run: |
8278
${GITHUB_ACTION_PATH}/run.sh
83-
- uses: actions/upload-artifact@v4
84-
with:
85-
name: tmon-logs-${{ inputs.arch }}-${{ inputs.toolchain_full }}${{ inputs.kernel-test }}
86-
if-no-files-found: error
87-
path: "/tmp/tmon_pcap/*"
8879

0 commit comments

Comments
 (0)