Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
needs:
- define-matrix
strategy:
fail-fast: true
fail-fast: false
matrix:
gap-version: ${{ fromJSON(needs.define-matrix.outputs.versions) }}
operating-system-base: ${{ fromJSON(needs.define-matrix.outputs.systems) }}
Expand Down
14 changes: 9 additions & 5 deletions src/dockerfiles/ubuntu-2204-lts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## {{{
ARG GAP_VERSION="4.13.1"
ARG GAP_VERSION="4.14.0"
ARG PACKAGE_MANAGER_VERSION="1.6.2"
## }}}

Expand Down Expand Up @@ -35,7 +35,8 @@ ARG GAP_USER_HOMEDIR
RUN groupadd --system --gid ${GAP_USER_GID} ${GAP_USER_GROUPNAME} && \
useradd --system --gid ${GAP_USER_GID} --home-dir ${GAP_USER_HOMEDIR} --create-home ${GAP_USER_USERNAME}

RUN apt-get update --yes && \
RUN apt-get clean && \
apt-get update --yes && \
apt-get install --no-install-recommends --quiet --yes \
ca-certificates \
curl \
Expand Down Expand Up @@ -63,7 +64,8 @@ ARG GAP_USER_HOMEDIR
ARG GAP_USER_USERNAME
ARG GAP_USER_GROUPNAME

RUN apt-get update --yes && \
RUN apt-get clean && \
apt-get update --yes && \
apt-get install --no-install-recommends --quiet --yes \
autoconf \
build-essential \
Expand Down Expand Up @@ -94,7 +96,8 @@ ARG PACKAGE_MANAGER_DOWNLOAD_URL
ENV PATH="${GAP_USER_HOMEDIR}/gap-${GAP_VERSION}/:${PATH}"
ENV LD_LIBRARY_PATH="${GAP_USER_HOMEDIR}/gap-${GAP_VERSION}/lib"

RUN apt-get update --yes && \
RUN apt-get clean && \
apt-get update --yes && \
apt-get install --no-install-recommends --quiet --yes \
ca-certificates \
curl \
Expand Down Expand Up @@ -133,7 +136,8 @@ ARG GAP_USER_HOMEDIR
ARG GAP_USER_USERNAME
ARG GAP_USER_GROUPNAME

RUN apt-get update --yes && \
RUN apt-get clean && \
apt-get update --yes && \
apt-get install --no-install-recommends --quiet --yes \
autoconf \
build-essential \
Expand Down
Loading