diff --git a/.github/actions/generate-package-build-matrix/action.yml b/.github/actions/generate-package-build-matrix/action.yml index caba22b8e2..7e90f27be5 100644 --- a/.github/actions/generate-package-build-matrix/action.yml +++ b/.github/actions/generate-package-build-matrix/action.yml @@ -24,7 +24,7 @@ runs: - name: Get targets run: | - x86_arch=$(jq -c '[.linux_targets[] | select(.arch=="x86_64") | .target |= sub("ubuntu([0-9]+\\.[0-9]+)"; "ubuntu-\1")]' utils/releasetools/build-config.json) + x86_arch=$(jq -c '[.linux_targets[] | select(.arch=="x86_64")]' utils/releasetools/build-config.json) x86_matrix=$(echo "{ \"distro\" : $x86_arch }" | jq -c .) echo "X86_MATRIX=$x86_matrix" >> $GITHUB_ENV diff --git a/utils/releasetools/build-config.json b/utils/releasetools/build-config.json index 5e39fae70f..f64bf601ca 100644 --- a/utils/releasetools/build-config.json +++ b/utils/releasetools/build-config.json @@ -1,29 +1,24 @@ { "linux_targets": [ + { "arch": "x86_64", - "target": "ubuntu18.04", + "target": "ubuntu-20.04", "type": "deb", - "platform": "bionic" + "platform": "focal" }, { "arch": "x86_64", - "target": "ubuntu20.04", + "target": "ubuntu-22.04", "type": "deb", - "platform": "focal" + "platform": "jammy" }, { "arch": "x86_64", - "target": "ubuntu24.04", + "target": "ubuntu-24.04", "type": "deb", "platform": "noble" }, - { - "arch": "arm64", - "target": "ubuntu18.04", - "type": "deb", - "platform": "bionic" - }, { "arch": "arm64", "target": "ubuntu20.04", @@ -32,9 +27,9 @@ }, { "arch": "arm64", - "target": "ubuntu24.04", + "target": "ubuntu22.04", "type": "deb", - "platform": "noble" + "platform": "jammy" } ] } \ No newline at end of file