Skip to content

Commit

Permalink
Add OpenSSL 1.1.1w builder (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen authored Oct 22, 2023
1 parent 0c75863 commit 7e07d85
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/linux-builder-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,40 @@ jobs:
topic: ${{ github.repository }} scheduled job failure
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.

x86-64-unknown-linux-builder-with-openssl_1_1_1w:
needs:
- x86-64-unknown-linux-builder

name: Update x86-64-unknown-linux-builder-with-openssl_1.1.1w
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to DockerHub
run: docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
env:
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
- name: Login to GitHub Container Registry
# v2.2.0
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
run: bash x86-64-unknown-linux-builder-with-openssl_1.1.1w/build-and-push.bash
- name: Send alert on failure
if: ${{ failure() }}
uses: zulip/github-actions-zulip/send-message@b62d5a0e48a4d984ea4fce5dd65ba691963d4db4
with:
api-key: ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_API_KEY }}
email: ${{ secrets.ZULIP_SCHEDULED_JOB_FAILURE_EMAIL }}
organization-url: 'https://ponylang.zulipchat.com/'
to: notifications
type: stream
topic: ${{ github.repository }} scheduled job failure
content: ${{ github.server_url}}/${{ github.repository }}/actions/runs/${{ github.run_id }} failed.

x86-64-unknown-linux-builder-with-openssl_3_0_7:
needs:
- x86-64-unknown-linux-builder
Expand Down Expand Up @@ -283,6 +317,7 @@ jobs:
- x86-64-unknown-linux-builder-with-libressl_3_7_3
- x86-64-unknown-linux-builder-with-openssl_1_1_1q
- x86-64-unknown-linux-builder-with-openssl_1_1_1t
- x86-64-unknown-linux-builder-with-openssl_1_1_1w
- x86-64-unknown-linux-builder-with-openssl_3_0_7
- x86-64-unknown-linux-builder-with-openssl_3_1_0
- x86-64-unknown-linux-builder-with-pcre
Expand Down Expand Up @@ -356,6 +391,7 @@ jobs:
- shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.7.3
- shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_1.1.1q
- shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_1.1.1t
- shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_1.1.1w
- shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.0.7
- shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.1.0
- shared-docker-ci-x86-64-unknown-linux-builder-with-pcre
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ jobs:
- name: Docker build
run: "docker build --pull --file=x86-64-unknown-linux-builder-with-openssl_1.1.1t/Dockerfile ."

validate-x86-64-unknown-linux-builder-with-openssl_1_1_1w-image-builds:
name: Validate x86-64-unknown-linux-builder-with-openssl_1.1.1w Docker image builds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Docker build
run: "docker build --pull --file=x86-64-unknown-linux-builder-with-openssl_1.1.1w/Dockerfile ."

validate-x86-64-unknown-linux-builder-with-openssl_3_0_7-image-builds:
name: Validate x86-64-unknown-linux-builder-with-openssl_3.0.7 Docker image builds
runs-on: ubuntu-latest
Expand Down
16 changes: 16 additions & 0 deletions x86-64-unknown-linux-builder-with-openssl_1.1.1w/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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://github.com/openssl/openssl/archive/OpenSSL_1_1_1w.tar.gz && \
tar xf OpenSSL_1_1_1w.tar.gz && \
cd openssl-OpenSSL_1_1_1w && \
./Configure --api=1.1.0 no-shared linux-x86_64 enable-rc5 enable-md2 && \
make install_sw && \
cd /tmp && \
rm -rf openssl-OpenSSL_1_1_1w
3 changes: 3 additions & 0 deletions x86-64-unknown-linux-builder-with-openssl_1.1.1w/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# x86-64-unknown-linux-builder-with-openssl_1.1.1w

The x86-64-unknown-linux-builder with OpenSSL 1.1.1w implementation installed as well. Rebuilt daily.
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
#!/bin/bash

set -o errexit
set -o nounset

#
# *** You should already be logged in to DockerHub
# and GitHub Container Registry when you run this ***
#

DOCKERFILE_DIR="$(dirname "$0")"

## DockerHub

NAME="ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_1.1.1w"

# 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}"

## GitHub Container Registry

NAME="ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_1.1.1w"

# 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}"

0 comments on commit 7e07d85

Please sign in to comment.