Skip to content

Commit 3e54df5

Browse files
authored
Fix gen matrix logs (#1343)
Summary: The script does the correct thing but the logs were switched. This fixes the logging. Relevant Issues: N/A Type of change: /kind cleanup Test Plan: Check script output. Signed-off-by: Vihang Mehta <vihang@pixielabs.ai>
1 parent 8c109a3 commit 3e54df5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ci/github/matrix.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ elif [[ "${event_name}" == "pull_request" ]]; then
6666
fi
6767
# Build/Test bpf targets if #ci:bpf-build{-all-kernels} is in the commit message.
6868
if check_tag '#ci:bpf-build-all-kernels'; then
69-
echo "Found #ci:bpf-build tag. Building bpf targets" >&2
69+
echo "Found #ci:bpf-build-all-kernels tag. Building bpf targets on all kernel versions" >&2
7070
build_deps_flags+=("-b")
7171
kernel_versions=( "${all_kernel_versions[@]}" )
7272
elif check_tag '#ci:bpf-build'; then
73-
echo "Found #ci:bpf-build-all-kernels. Building bpf targets on all kernel versions" >&2
73+
echo "Found #ci:bpf-build tag. Building bpf targets" >&2
7474
build_deps_flags+=("-b")
7575
fi
7676
fi

0 commit comments

Comments
 (0)