Skip to content

Commit

Permalink
[NO_JIRA] [CI] Fix the version of libssl1 Ubuntu package (#3074)
Browse files Browse the repository at this point in the history
This PR fixes the "Docker tests" CI workflow
https://github.com/apache/avro/actions/runs/10283162033/job/28456409653

```

------
 > [ 5/22] RUN export ARCH="$(dpkg --print-architecture)";   export LIBSSL_DEB="libssl1.1_1.1.1f-1ubuntu2.22_$ARCH.deb";   wget -q "http://security.ubuntu.com/ubuntu/pool/main/o/openssl/$LIBSSL_DEB" ||     wget -q "http://ports.ubuntu.com/ubuntu-ports/pool/main/o/openssl/$LIBSSL_DEB";   dpkg -i "$LIBSSL_DEB";   rm "$LIBSSL_DEB":
0.570 dpkg: error: cannot access archive 'libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb': No such file or directory
0.571 rm: cannot remove 'libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb': No such file or directory
```

It got bumped from 2.22 to 2.23 ...
TODO: We need to find a repo that keeps the old versions!

Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
  • Loading branch information
martin-g committed Aug 7, 2024
1 parent dffc13a commit 7a8ec75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion share/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ RUN apt-get -qqy install --no-install-recommends libzstd-dev \

# Required for Dotnet
RUN export ARCH="$(dpkg --print-architecture)"; \
export LIBSSL_DEB="libssl1.1_1.1.1f-1ubuntu2.22_$ARCH.deb"; \
export LIBSSL_DEB="libssl1.1_1.1.1f-1ubuntu2.23_$ARCH.deb"; \
wget -q "http://security.ubuntu.com/ubuntu/pool/main/o/openssl/$LIBSSL_DEB" || \
wget -q "http://ports.ubuntu.com/ubuntu-ports/pool/main/o/openssl/$LIBSSL_DEB"; \
dpkg -i "$LIBSSL_DEB"; \
Expand Down

0 comments on commit 7a8ec75

Please sign in to comment.