From f0021e26986556010bc1796005e976b57d64ed70 Mon Sep 17 00:00:00 2001 From: shiva kumar Date: Tue, 3 Dec 2024 13:19:17 +0530 Subject: [PATCH] ubuntu24.04 precompile support Signed-off-by: shiva kumar --- .github/workflows/precompiled.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/precompiled.yaml b/.github/workflows/precompiled.yaml index 63addc4b..45c43432 100644 --- a/.github/workflows/precompiled.yaml +++ b/.github/workflows/precompiled.yaml @@ -53,7 +53,8 @@ jobs: echo "driver_branch=$driver_branch_json" >> $GITHUB_OUTPUT # get kernel flavors - KERNEL_FLAVORS=("aws" "azure" "generic" "nvidia" "oracle") + # KERNEL_FLAVORS=("aws" "azure" "generic" "nvidia" "oracle") + KERNEL_FLAVORS=("azure" "nvidia") kernel_flavors_json=$(printf '%s\n' "${KERNEL_FLAVORS[@]}" | jq -R . | jq -cs .) echo "kernel_flavors=$kernel_flavors_json" >> $GITHUB_OUTPUT @@ -267,8 +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") | not))') - echo "exclude_combined_values Kernel Versions (without Azure): $exclude_combined_values" + 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