Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement: Add pagefind 1.2.0 variants #16

Merged
merged 1 commit into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 122 additions & 0 deletions .github/workflows/ci-master-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,125 @@ jobs:
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

build-1-2-0:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Display system info (linux)
run: |
set -e
hostname
whoami
cat /etc/*release
lscpu
free
df -h
pwd
docker info
docker version

# See: https://github.com/docker/build-push-action/blob/v2.6.1/docs/advanced/cache.md#github-cache
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3

- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-1.2.0-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-1.2.0-
${{ runner.os }}-buildx-

- name: Login to Docker Hub registry
# Run on master and tags
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_REGISTRY_USER }}
password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }}

# This step generates the docker tags
- name: Prepare
id: prep-1-2-0
run: |
set -e

# Get ref, i.e. <branch_name> from refs/heads/<branch_name>, or <tag-name> from refs/tags/<tag_name>. E.g. 'master' or 'v0.0.0'
REF=$( echo "${GITHUB_REF}" | rev | cut -d '/' -f 1 | rev )

# Get short commit hash E.g. 'abc0123'
SHA=$( echo "${GITHUB_SHA}" | cut -c1-7 )

# Generate docker image tags
# E.g. 'v0.0.0-<variant>' and 'v0.0.0-abc0123-<variant>'
# E.g. 'master-<variant>' and 'master-abc0123-<variant>'
VARIANT="1.2.0"
REF_VARIANT="${REF}-${VARIANT}"
REF_SHA_VARIANT="${REF}-${SHA}-${VARIANT}"

# Pass variables to next step
echo "VARIANT_BUILD_DIR=$VARIANT_BUILD_DIR" >> $GITHUB_OUTPUT
echo "VARIANT=$VARIANT" >> $GITHUB_OUTPUT
echo "REF_VARIANT=$REF_VARIANT" >> $GITHUB_OUTPUT
echo "REF_SHA_VARIANT=$REF_SHA_VARIANT" >> $GITHUB_OUTPUT

- name: 1.2.0 - Build (PRs)
# Run only on pull requests
if: github.event_name == 'pull_request'
uses: docker/build-push-action@v5
with:
context: variants/1.2.0
platforms: linux/386,linux/amd64,linux/arm64
push: false
tags: |
${{ github.repository }}:${{ steps.prep-1-2-0.outputs.REF_VARIANT }}
${{ github.repository }}:${{ steps.prep-1-2-0.outputs.REF_SHA_VARIANT }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max

- name: 1.2.0 - Build and push (master)
# Run only on master
if: github.ref == 'refs/heads/master'
uses: docker/build-push-action@v5
with:
context: variants/1.2.0
platforms: linux/386,linux/amd64,linux/arm64
push: true
tags: |
${{ github.repository }}:${{ steps.prep-1-2-0.outputs.REF_VARIANT }}
${{ github.repository }}:${{ steps.prep-1-2-0.outputs.REF_SHA_VARIANT }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max

- name: 1.2.0 - Build and push (release)
if: startsWith(github.ref, 'refs/tags/')
uses: docker/build-push-action@v5
with:
context: variants/1.2.0
platforms: linux/386,linux/amd64,linux/arm64
push: true
tags: |
${{ github.repository }}:${{ steps.prep-1-2-0.outputs.VARIANT }}
${{ github.repository }}:${{ steps.prep-1-2-0.outputs.REF_VARIANT }}
${{ github.repository }}:${{ steps.prep-1-2-0.outputs.REF_SHA_VARIANT }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max

# Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
- name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

build-1-1-0:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -394,6 +513,7 @@ jobs:
update-draft-release:
needs:
- build-1-3-0
- build-1-2-0
- build-1-1-0
- build-1-0-4
if: github.ref == 'refs/heads/master'
Expand All @@ -410,6 +530,7 @@ jobs:
publish-draft-release:
needs:
- build-1-3-0
- build-1-2-0
- build-1-1-0
- build-1-0-4
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -428,6 +549,7 @@ jobs:
update-dockerhub-description:
needs:
- build-1-3-0
- build-1-2-0
- build-1-1-0
- build-1-0-4
if: github.ref == 'refs/heads/master'
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Dockerized [pagefind](https://github.com/CloudCannon/pagefind).
| Tag | Dockerfile Build Context |
|:-------:|:---------:|
| `:1.3.0`, `:latest` | [View](variants/1.3.0) |
| `:1.2.0` | [View](variants/1.2.0) |
| `:1.1.0` | [View](variants/1.1.0) |
| `:1.0.4` | [View](variants/1.0.4) |

Expand Down
1 change: 1 addition & 0 deletions generate/definitions/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"pagefind": {
"versions": [
"1.3.0",
"1.2.0",
"1.1.0",
"1.0.4"
],
Expand Down
39 changes: 39 additions & 0 deletions variants/1.2.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
FROM alpine:3.17
# Install pagefind_extended
RUN set -eux; \
PAGEFIND_EXTENDED_VERSION=v1.2.0; \
case "$( uname -m )" in \
'x86') \
URL="https://github.com/CloudCannon/pagefind/releases/download/v1.2.0/pagefind_extended-v1.2.0-x86_64-unknown-linux-musl.tar.gz"; \
SHA256=7f7b265315384dc46819945449fb82b4dc38c7fbf2750cc2c42af6f81dbcca59; \
;; \
'x86_64') \
URL="https://github.com/CloudCannon/pagefind/releases/download/v1.2.0/pagefind_extended-v1.2.0-x86_64-unknown-linux-musl.tar.gz"; \
SHA256=7f7b265315384dc46819945449fb82b4dc38c7fbf2750cc2c42af6f81dbcca59; \
;; \
'aarch64') \
URL="https://github.com/CloudCannon/pagefind/releases/download/v1.2.0/pagefind_extended-v1.2.0-aarch64-unknown-linux-musl.tar.gz"; \
SHA256=e4a5a0812eb322b697b2f302608ee7c9b23cc4ca43484ea2391763a1d54c0438; \
;; \
*) \
echo "Architecture not supported"; \
exit 1; \
;; \
esac; \
FILE=pagefind_extended.tar.gz; \
wget -q "$URL" -O "$FILE"; \
echo "$SHA256 $FILE" | sha256sum -c -; \
tar -xvf "$FILE" --no-same-owner --no-same-permissions -- pagefind_extended; \
rm -f "$FILE"; \
mkdir -pv /usr/local/bin; \
mv -v pagefind_extended /usr/local/bin/pagefind_extended; \
chmod +x /usr/local/bin/pagefind_extended; \
pagefind_extended --version; \
:

COPY docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod +x docker-entrypoint.sh

WORKDIR /
ENTRYPOINT [ "/docker-entrypoint.sh" ]
CMD [ "pagefind_extended", "--site", "/public" ]
8 changes: 8 additions & 0 deletions variants/1.2.0/docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh
set -eu

if [ $# -gt 0 ] && [ "${1#-}" != "$1" ]; then
set -- pagefind_extended "$@"
fi

exec "$@"
Loading