From be5834cf85de6a43225bdbb43e9490f9af31e18d Mon Sep 17 00:00:00 2001 From: Adrian Stanea <Adrian.Stanea@analog.com> Date: Wed, 23 Oct 2024 14:02:02 +0300 Subject: [PATCH] ci: remove package version overwrites - The versions are defined in azure-pipelines.yml and the CI scripts should all build using the specified version. Signed-off-by: Adrian Stanea <Adrian.Stanea@analog.com> --- CI/macOS/install_deps | 3 --- CI/ubuntu/install_deps | 1 - azure-pipelines.yml | 1 + 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CI/macOS/install_deps b/CI/macOS/install_deps index 0f1f1e1a..be7cc2a7 100755 --- a/CI/macOS/install_deps +++ b/CI/macOS/install_deps @@ -2,9 +2,6 @@ set -ex -LIBIIO_VERSION=libiio-v0 -GLOG_VERSION=v0.4.0 - WORKDIR=$(pwd) install_packages() { diff --git a/CI/ubuntu/install_deps b/CI/ubuntu/install_deps index cd795b43..e52d602c 100755 --- a/CI/ubuntu/install_deps +++ b/CI/ubuntu/install_deps @@ -1,7 +1,6 @@ #!/bin/sh -e TOP_DIR=$(pwd) -LIBIIO_VERSION=libiio-v0 set -x diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 284551d3..dd7ab89a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,6 +8,7 @@ variables: REPO_SLUG: $(Build.Repository.Name) CURRENT_COMMIT: $(Build.SourceVersion) LIBIIO_VERSION: 'libiio-v0' + GLOG_VERSION: 'v0.4.0' trigger: - main