diff --git a/.semaphore/verify-linux-packages.yml b/.semaphore/verify-linux-packages.yml index cd9c579483..99fc8b814c 100644 --- a/.semaphore/verify-linux-packages.yml +++ b/.semaphore/verify-linux-packages.yml @@ -12,9 +12,6 @@ global_job_config: prologue: commands: - checkout - env_vars: - - name: REPOSITORY_BASE_URL - value: "https://packages.confluent.io" blocks: - name: "Verify Linux packages (x86_64)" @@ -27,7 +24,9 @@ blocks: - name: "Verify packages" commands: - cd packaging/cp - - ./verify-packages.sh ${REPOSITORY_BASE_URL} linux/amd64 ${LIBRDKAFKA_VERSION} + - ./verify-packages.sh + ${REPOSITORY_BASE_URL:-https://packages.confluent.io/clients} + linux/amd64 ${LIBRDKAFKA_VERSION} - name: "Verify Linux packages (aarch64)" dependencies: [] task: @@ -38,4 +37,6 @@ blocks: - name: "Verify packages" commands: - cd packaging/cp - - ./verify-packages.sh ${REPOSITORY_BASE_URL} linux/arm64 ${LIBRDKAFKA_VERSION} + - ./verify-packages.sh + ${REPOSITORY_BASE_URL:-https://packages.confluent.io/clients} + linux/arm64 ${LIBRDKAFKA_VERSION} diff --git a/packaging/cp/verify-deb.sh b/packaging/cp/verify-deb.sh index 7c642d1392..2528118fba 100755 --- a/packaging/cp/verify-deb.sh +++ b/packaging/cp/verify-deb.sh @@ -14,11 +14,11 @@ fi apt-get update apt-get install -y apt-transport-https wget gnupg2 lsb-release -wget -qO - ${base_url}/clients/deb/archive.key | apt-key add - +wget -qO - ${base_url}/deb/archive.key | apt-key add - release=$(lsb_release -cs) cat >/etc/apt/sources.list.d/Confluent.list </etc/yum.repos.d/Confluent.repo <