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; \
14
14
cabal install \
15
15
alex \
16
16
happy \
17
- Agda-2.6.0.1 \
17
+ Agda-2.6.2.2 \
18
18
;
19
19
20
20
ENV PATH=/opt/agda/bin:$PATH
21
21
# Install standard-library and cubical
22
22
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; \
24
24
cd /opt/agda/agda-stdlib; \
25
25
cabal install; \
26
26
# Type check all files in standard-library so that it doesn't need to be checked on every user submission.
27
27
dist/build/GenerateEverything/GenerateEverything; \
28
28
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; \
30
30
cd /opt/agda/cubical; \
31
31
# Use a version before the change incompatible with v2.6.0. https://github.com/agda/cubical/issues/145
32
- git checkout b1fddc15b80ed9569224b8a1461ae5f879dab826; \
33
32
make;
34
33
35
-
36
34
FROM alpine:3.9
37
35
RUN apk add --no-cache \
38
36
libffi \
You can’t perform that action at this time.
0 commit comments