From a18535696e900c85a07956e90e5e840733ceb694 Mon Sep 17 00:00:00 2001 From: Snider Date: Thu, 21 Mar 2024 16:33:20 +0000 Subject: [PATCH] workaround for conan semver bug --- .github/workflows/cli-testnet.yml | 4 +++- contrib/cmake/settings_user.yml | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 contrib/cmake/settings_user.yml diff --git a/.github/workflows/cli-testnet.yml b/.github/workflows/cli-testnet.yml index 8bc79ddb..baad7398 100644 --- a/.github/workflows/cli-testnet.yml +++ b/.github/workflows/cli-testnet.yml @@ -47,7 +47,9 @@ jobs: cmakeVersion: "~3.25.0" ninjaVersion: "^1.11.1" - name: Call make release-testnet - run: make release-testnet + run: | + conan config install contrib/cmake/settings_user.yml + make release-testnet linux-amd64: runs-on: ubuntu-20.04 env: diff --git a/contrib/cmake/settings_user.yml b/contrib/cmake/settings_user.yml new file mode 100644 index 00000000..bf41b81e --- /dev/null +++ b/contrib/cmake/settings_user.yml @@ -0,0 +1,3 @@ +compiler: + gcc: + version: ["11.4.0"] \ No newline at end of file