Skip to content

Commit 203ce22

Browse files
authored
Try to build Agda 2.6.2.2 (#1)
1 parent 7ba9435 commit 203ce22

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,23 @@ RUN set -ex; \
1414
cabal install \
1515
alex \
1616
happy \
17-
Agda-2.6.0.1 \
17+
Agda-2.6.2.2 \
1818
;
1919

2020
ENV PATH=/opt/agda/bin:$PATH
2121
# Install standard-library and cubical
2222
RUN set -ex; \
23-
git clone --depth 1 --branch v1.0.1 https://github.com/agda/agda-stdlib.git /opt/agda/agda-stdlib; \
23+
git clone --depth 1 --branch v1.7.1 https://github.com/agda/agda-stdlib.git /opt/agda/agda-stdlib; \
2424
cd /opt/agda/agda-stdlib; \
2525
cabal install; \
2626
# Type check all files in standard-library so that it doesn't need to be checked on every user submission.
2727
dist/build/GenerateEverything/GenerateEverything; \
2828
agda -i. -isrc Everything.agda; \
29-
git clone https://github.com/agda/cubical /opt/agda/cubical; \
29+
git clone --depth 1 --branch v0.3 https://github.com/agda/cubical /opt/agda/cubical; \
3030
cd /opt/agda/cubical; \
3131
# Use a version before the change incompatible with v2.6.0. https://github.com/agda/cubical/issues/145
32-
git checkout b1fddc15b80ed9569224b8a1461ae5f879dab826; \
3332
make;
3433

35-
3634
FROM alpine:3.9
3735
RUN apk add --no-cache \
3836
libffi \

0 commit comments

Comments
 (0)