File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff 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
2020ENV PATH=/opt/agda/bin:$PATH
2121# Install standard-library and cubical
2222RUN 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-
3634FROM alpine:3.9
3735RUN apk add --no-cache \
3836 libffi \
You can’t perform that action at this time.
0 commit comments