Skip to content

Commit 9034e6a

Browse files
authored
fix: Set default gap-version to newest one (#84)
1 parent 6c1360d commit 9034e6a

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
needs:
4141
- define-matrix
4242
strategy:
43-
fail-fast: true
43+
fail-fast: false
4444
matrix:
4545
gap-version: ${{ fromJSON(needs.define-matrix.outputs.versions) }}
4646
operating-system-base: ${{ fromJSON(needs.define-matrix.outputs.systems) }}

src/dockerfiles/ubuntu-2204-lts/Dockerfile

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## {{{
2-
ARG GAP_VERSION="4.13.1"
2+
ARG GAP_VERSION="4.14.0"
33
ARG PACKAGE_MANAGER_VERSION="1.6.2"
44
## }}}
55

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

38-
RUN apt-get update --yes && \
38+
RUN apt-get clean && \
39+
apt-get update --yes && \
3940
apt-get install --no-install-recommends --quiet --yes \
4041
ca-certificates \
4142
curl \
@@ -63,7 +64,8 @@ ARG GAP_USER_HOMEDIR
6364
ARG GAP_USER_USERNAME
6465
ARG GAP_USER_GROUPNAME
6566

66-
RUN apt-get update --yes && \
67+
RUN apt-get clean && \
68+
apt-get update --yes && \
6769
apt-get install --no-install-recommends --quiet --yes \
6870
autoconf \
6971
build-essential \
@@ -94,7 +96,8 @@ ARG PACKAGE_MANAGER_DOWNLOAD_URL
9496
ENV PATH="${GAP_USER_HOMEDIR}/gap-${GAP_VERSION}/:${PATH}"
9597
ENV LD_LIBRARY_PATH="${GAP_USER_HOMEDIR}/gap-${GAP_VERSION}/lib"
9698

97-
RUN apt-get update --yes && \
99+
RUN apt-get clean && \
100+
apt-get update --yes && \
98101
apt-get install --no-install-recommends --quiet --yes \
99102
ca-certificates \
100103
curl \
@@ -133,7 +136,8 @@ ARG GAP_USER_HOMEDIR
133136
ARG GAP_USER_USERNAME
134137
ARG GAP_USER_GROUPNAME
135138

136-
RUN apt-get update --yes && \
139+
RUN apt-get clean && \
140+
apt-get update --yes && \
137141
apt-get install --no-install-recommends --quiet --yes \
138142
autoconf \
139143
build-essential \

0 commit comments

Comments
 (0)