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

Add test for alpine 3.20.2 with chrome 128 #330

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
40 changes: 40 additions & 0 deletions .github/docker/Dockerfile_alpine-3-20-2
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
FROM hexpm/elixir:1.17.2-erlang-26.2.5.2-alpine-3.20.2

USER root

RUN apk update \
&& apk add --no-cache \
# Will install chromium 128.0.6613.119 & ghostscript 10.03.1
chromium \
ghostscript \
# for verapdf & ZUV
openjdk11-jre \
# for pdftotext & friends
poppler-utils \
# for identifying images
imagemagick \
# for 'kill'
procps \
# temporary for installation below
wget \
unzip \
# GNU tar needed by actions/cache
tar

RUN mkdir /opt/verapdf
WORKDIR /opt/verapdf
RUN wget http://downloads.verapdf.org/rel/verapdf-installer.zip \
&& unzip verapdf-installer.zip \
&& mv verapdf-greenfield* verapdf-greenfield \
&& chmod +x verapdf-greenfield/verapdf-install
COPY .github/docker/auto-install.xml /opt/verapdf/verapdf-greenfield
RUN ./verapdf-greenfield/verapdf-install auto-install.xml

WORKDIR /opt/zuv
RUN wget https://github.com/ZUGFeRD/ZUV/releases/download/v0.8.3/ZUV-0.8.3.jar
ENV ZUV_JAR /opt/zuv/ZUV-0.8.3.jar

RUN apk del \
wget \
unzip \
&& rm -rf /var/lib/apt/lists/*
2 changes: 1 addition & 1 deletion .github/workflows/publish-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
packages: write
strategy:
matrix:
dockerfile: ['elixir-1-11', 'debian-buster', 'alpine-3-17-3', 'alpine-3-18-4']
dockerfile: ['elixir-1-11', 'debian-buster', 'alpine-3-17-3', 'alpine-3-18-4', 'alpine-3-20-2']
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Already ran it once on this branch :)


steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
name: ${{ matrix.tag }}
strategy:
matrix:
tag: ['elixir-1-11', 'debian-buster', 'alpine-3-17-3', 'alpine-3-18-4']
tag: ['elixir-1-11', 'debian-buster', 'alpine-3-17-3', 'alpine-3-18-4', 'alpine-3-20-2']
env:
MIX_ENV: test
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# locked to the versions we use in the lint CI job
elixir 1.14.5
erlang 25.3.1
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This version is not working properly on a Mac without a lot of hassle.

erlang 26.1.2
Loading