File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 20
20
steps :
21
21
- uses : actions/checkout@v4
22
22
23
+ - run : which ghcup || true
24
+ - run : ghcup --numeric-version || true
25
+
23
26
- uses : ./
24
27
28
+ - run : which ghcup
29
+ - run : ghcup --numeric-version
30
+
25
31
- run : ghcup config
26
32
- run : ghcup debug-info
27
33
- run : ghcup tool-requirements
50
56
- if : runner.os == 'Windows'
51
57
run : ghcup run -m sh -- -c 'pacman --version'
52
58
59
+ container :
60
+ runs-on : ubuntu-20.04
61
+ container :
62
+ image : debian:12
63
+ steps :
64
+ - run : |
65
+ apt-get update
66
+ apt-get install -y libnuma-dev zlib1g-dev libgmp-dev libgmp10 libssl-dev liblzma-dev libbz2-dev git wget lsb-release software-properties-common gnupg2 apt-transport-https gcc autoconf automake build-essential curl ghc gzip libffi-dev libncurses-dev libncurses5 libtinfo5 patchelf bash
67
+
68
+ - uses : actions/checkout@v4
69
+
70
+ - uses : ./
71
+
72
+ - run : which ghcup
73
+ - run : ghcup config
74
+ - run : ghcup debug-info
75
+ - run : ghcup tool-requirements
76
+ - run : ghcup list
77
+
78
+ - run : ghcup install ghc latest --set
79
+ - run : ghcup whereis ghc latest
80
+ - run : which ghc
81
+ - run : ghc --version
82
+
83
+ - run : ghcup install cabal latest --set
84
+ - run : ghcup whereis cabal latest
85
+ - run : which cabal
86
+ - run : cabal --version
87
+
88
+
53
89
vanilla-channel :
54
90
strategy :
55
91
matrix :
You can’t perform that action at this time.
0 commit comments