Skip to content

Commit

Permalink
ubuntu24.04 precompile support
Browse files Browse the repository at this point in the history
Signed-off-by: shiva kumar <[email protected]>
  • Loading branch information
shivakunv committed Dec 3, 2024
1 parent f0021e2 commit 90afdac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/precompiled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@ jobs:
combined_values=$(printf '%s\n' "${kernel_versions[@]}" | jq -R . | jq -s -c . | tr -d ' \n')
echo "Combined Kernel Versions JSON: $combined_values"
# FIXME -- remove once azure kernel upgrade starts working
exclude_combined_values=$(echo "$combined_values" | jq 'map(select(test("azure")))')
exclude_combined_values=$(printf '%s\n' "${kernel_versions[@]}" | jq 'map(select(test("azure")))' | jq -R . | jq -s -c . | tr -d ' \n')
# exclude_combined_values=$(echo "$combined_values" | jq 'map(select(test("azure")))')
echo "exclude_combined_values Kernel Versions : $exclude_combined_values"
echo "matrix_values=$combined_values" >> $GITHUB_OUTPUT
echo "exclude_matrix_values=$exclude_combined_values" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 90afdac

Please sign in to comment.