File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6666 vmlinuz : ' ${{ github.workspace }}/vmlinuz'
6767 kernel-root : ' .'
6868 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 8181 # Don't run meta's veristat from forked repo.
8282 kernel-test : ${{ github.event.pull_request.head.repo.full_name == github.repository && 'run_veristat_kernel,run_veristat_meta' || 'run_veristat_kernel' }}
8383 output-dir : ' ${{ github.workspace }}'
84+ toolchain : ${{ inputs.toolchain }}
8485
8586 - name : Compare and save veristat.kernel.csv
8687 uses : ./.github/actions/veristat_baseline_compare
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ WORKING_DIR="/${PROJECT_NAME}"
2222BPF_SELFTESTS_DIR=" ${WORKING_DIR} /selftests/bpf"
2323VMTEST_CONFIGS_PATH=" ${WORKING_DIR} /ci/vmtest/configs"
2424PKG_CONFIG=pkg-config
25+ TMON_DIR=/tmp/tmon_pcap
2526
2627read_lists () {
2728 (for path in " $@ " ; do
@@ -190,6 +191,10 @@ echo "TMONLIST: ${TMONLIST}"
190191
191192cd ${PROJECT_NAME} /selftests/bpf
192193
194+ if [ -d "${TMON_DIR} " ]; then
195+ rm -rf "${TMON_DIR} "
196+ fi
197+
193198# populate TEST_NAMES
194199read_test_names "$@ "
195200# if we don't have any test name provided to the script, we run all tests.
206211 "${test_name} "
207212 done
208213fi
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