-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9363c48
commit 5697cd9
Showing
5 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
x86-64-unknown-linux-builder-with-openssl_3.3.0/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
ARG FROM_TAG=release | ||
FROM ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder:${FROM_TAG} | ||
|
||
RUN apk add --update --no-cache \ | ||
clang-dev \ | ||
linux-headers \ | ||
perl | ||
|
||
RUN cd /tmp && \ | ||
wget https://www.openssl.org/source/openssl-3.3.0.tar.gz && \ | ||
tar xf openssl-3.3.0.tar.gz && \ | ||
cd openssl-3.3.0 && \ | ||
./Configure --api=3.0.0 no-shared linux-x86_64 enable-rc5 enable-md2 && \ | ||
make && \ | ||
make install && \ | ||
cd /tmp && \ | ||
rm -rf openssl-3.3.0 | ||
|
||
# For some reason, even though lib64 is in the linker search path, the | ||
# libraries when installed there can't be found | ||
RUN cp /usr/local/lib64/libssl.a /usr/local/lib/ && \ | ||
cp /usr/local/lib64/libcrypto.a /usr/local/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# x86-64-unknown-linux-builder-with-openssl_3.3.0 | ||
|
||
The x86-64-unknown-linux-builder with OpenSSL 3.3.0 implementation installed as well. Rebuilt daily. |
28 changes: 28 additions & 0 deletions
28
x86-64-unknown-linux-builder-with-openssl_3.3.0/build-and-push.bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
|
||
set -o errexit | ||
set -o nounset | ||
|
||
# | ||
# *** You should already be logged in to GitHub Container Registry when you run | ||
# this *** | ||
# | ||
DOCKERFILE_DIR="$(dirname "$0")" | ||
|
||
## GitHub Container Registry | ||
|
||
NAME="ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.3.0" | ||
|
||
# built from x86-64-unknown-linux-builder release tag | ||
FROM_TAG=release | ||
TAG_AS=release | ||
docker build --pull --build-arg FROM_TAG="${FROM_TAG}" \ | ||
-t "${NAME}:${TAG_AS}" "${DOCKERFILE_DIR}" | ||
docker push "${NAME}:${TAG_AS}" | ||
|
||
# built from x86-64-unknown-linux-builder latest tag | ||
FROM_TAG=latest | ||
TAG_AS=latest | ||
docker build --pull --build-arg FROM_TAG="${FROM_TAG}" \ | ||
-t "${NAME}:${TAG_AS}" "${DOCKERFILE_DIR}" | ||
docker push "${NAME}:${TAG_AS}" |