Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
akuzm committed Nov 8, 2023
1 parent 8e1ff6f commit 33f9390
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/abi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,12 @@ jobs:
# for the earliest versions we check against in this
# test. So we pin the version we compile against to
# OpenSSL 1.1 in the backwards test.
if [[ "${{ matrix.test }}" == *backward ]]; then
EXTRA_PKGS="openssl1.1-compat-dev"
else
EXTRA_PKGS="openssl-dev"
fi
# if [[ "${{ matrix.test }}" == *backward ]]; then
# EXTRA_PKGS="openssl1.1-compat-dev"
# else
# EXTRA_PKGS="openssl-dev"
# fi
EXTRA_PKGS="openssl1.1-compat-dev"

Check failure on line 103 in .github/workflows/abi.yaml

View workflow job for this annotation

GitHub Actions / Check YAML code in tree

103:9 syntax error: expected <block end>, but found '<scalar>' (syntax)

docker run -i --rm -v $(pwd):/mnt -e EXTRA_PKGS="${EXTRA_PKGS}" ${BUILDER_IMAGE} bash <<"EOF"
apk add cmake gcc make build-base krb5-dev git ${EXTRA_PKGS}
Expand All @@ -116,11 +117,12 @@ jobs:
run: |
TEST_IMAGE="postgres:${{ matrix.tester }}-alpine"
if [[ "${{ matrix.test }}" == *backward ]]; then
EXTRA_PKGS="openssl1.1-compat-dev"
else
EXTRA_PKGS="openssl-dev"
fi
# if [[ "${{ matrix.test }}" == *backward ]]; then
# EXTRA_PKGS="openssl1.1-compat-dev"
# else
# EXTRA_PKGS="openssl-dev"
# fi
EXTRA_PKGS="openssl1.1-compat-dev"

docker run -i --rm -v $(pwd):/mnt -e EXTRA_PKGS="${EXTRA_PKGS}" ${TEST_IMAGE} bash <<"EOF"
apk add cmake gcc make build-base krb5-dev sudo ${EXTRA_PKGS}
Expand Down

0 comments on commit 33f9390

Please sign in to comment.