From 9ba4950c65e0f21ecac260e7deb76761a2c384cb Mon Sep 17 00:00:00 2001 From: Dmitrii Ubskii <18616863+dmitrii-ubskii@users.noreply.github.com> Date: Fri, 15 Mar 2024 13:00:34 +0000 Subject: [PATCH 1/2] add-apt-repository -y --- .factory/automation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.factory/automation.yml b/.factory/automation.yml index 30fe91c84..baf7fc4ea 100644 --- a/.factory/automation.yml +++ b/.factory/automation.yml @@ -552,7 +552,7 @@ build: - test-cpp-behaviour-core - test-cpp-behaviour-cloud command: | - sudo add-apt-repository ppa:deadsnakes/ppa + sudo add-apt-repository -y ppa:deadsnakes/ppa sudo apt update && sudo apt install -y python3.9 python3.9-distutils python3-pip python3.9 -m pip install -U cffi export SYNC_DEPENDENCIES_TOKEN=$REPO_GITHUB_TOKEN From c53848e93f1d6e9f8dfa9e41a5c3bd8b8f0cf02e Mon Sep 17 00:00:00 2001 From: Dmitrii Ubskii <18616863+dmitrii-ubskii@users.noreply.github.com> Date: Fri, 15 Mar 2024 13:00:45 +0000 Subject: [PATCH 2/2] version validation --- BUILD | 1 + dependencies/vaticle/repositories.bzl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/BUILD b/BUILD index b48925fe5..85ee49d6f 100644 --- a/BUILD +++ b/BUILD @@ -64,6 +64,7 @@ release_validate_deps( "@vaticle_typeql", ], tags = ["manual"], # in order for bazel test //... to not fail + version_file = ":VERSION", ) # Force tools to be built during `build //...` diff --git a/dependencies/vaticle/repositories.bzl b/dependencies/vaticle/repositories.bzl index 9eac2db44..b9294222a 100644 --- a/dependencies/vaticle/repositories.bzl +++ b/dependencies/vaticle/repositories.bzl @@ -25,7 +25,7 @@ def vaticle_dependencies(): git_repository( name = "vaticle_dependencies", remote = "https://github.com/vaticle/dependencies", - commit = "845d397eedc1f1c3daf8e70966c8e41132db1d3e", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies + commit = "18ff0ff16344cb98937e5fcd8a246efb76529432", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies ) def vaticle_typeql():