File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 66
66
vmlinuz : ' ${{ github.workspace }}/vmlinuz'
67
67
kernel-root : ' .'
68
68
max-cpu : 8
69
- kernel-test : ${{ inputs.test }}
69
+ kernel-test : ${{ inputs.test }}
70
+ toolchain : ${{ inputs.toolchain_full }}
Original file line number Diff line number Diff line change 81
81
# Don't run meta's veristat from forked repo.
82
82
kernel-test : ${{ github.event.pull_request.head.repo.full_name == github.repository && 'run_veristat_kernel,run_veristat_meta' || 'run_veristat_kernel' }}
83
83
output-dir : ' ${{ github.workspace }}'
84
+ toolchain : ${{ inputs.toolchain }}
84
85
85
86
- name : Compare and save veristat.kernel.csv
86
87
uses : ./.github/actions/veristat_baseline_compare
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ WORKING_DIR="/${PROJECT_NAME}"
22
22
BPF_SELFTESTS_DIR=" ${WORKING_DIR} /selftests/bpf"
23
23
VMTEST_CONFIGS_PATH=" ${WORKING_DIR} /ci/vmtest/configs"
24
24
PKG_CONFIG=pkg-config
25
+ TMON_DIR=/tmp/tmon_pcap
25
26
26
27
read_lists () {
27
28
(for path in " $@ " ; do
@@ -190,6 +191,10 @@ echo "TMONLIST: ${TMONLIST}"
190
191
191
192
cd ${PROJECT_NAME} /selftests/bpf
192
193
194
+ if [ -d "${TMON_DIR} " ]; then
195
+ rm -rf "${TMON_DIR} "
196
+ fi
197
+
193
198
# populate TEST_NAMES
194
199
read_test_names "$@ "
195
200
# if we don't have any test name provided to the script, we run all tests.
206
211
"${test_name} "
207
212
done
208
213
fi
214
+
215
+ if [ -d "${TMON_DIR} " ]; then
216
+ rm -rf "${OUTPUT_DIR} /tmon-logs"
217
+ mv "${TMON_DIR} " "${OUTPUT_DIR} /tmon-logs"
218
+ fi
You can’t perform that action at this time.
0 commit comments