ci: fix cache key by setting lib versions in job env

This commit is contained in:
Daniele Varrazzo 2023-04-03 05:07:01 +02:00
parent 51dd59ef9d
commit 46238ba351
2 changed files with 7 additions and 2 deletions

View File

@ -54,6 +54,11 @@ jobs:
build-linux:
if: true
env:
LIBPQ_VERSION: "15.0"
OPENSSL_VERSION: "1.1.1t"
strategy:
fail-fast: false
matrix:

View File

@ -7,10 +7,10 @@ set -x
# Last release: https://www.postgresql.org/ftp/source/
# IMPORTANT! Change the cache key in packages.yml when upgrading libraries
postgres_version="${LIBPQ_VERSION:-15.0}"
postgres_version="${LIBPQ_VERSION}"
# last release: https://www.openssl.org/source/
openssl_version="${OPENSSL_VERSION:-1.1.1t}"
openssl_version="${OPENSSL_VERSION}"
# last release: https://openldap.org/software/download/
ldap_version="2.6.3"