We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f9337f commit 1fe693aCopy full SHA for 1fe693a
.github/workflows/test-ghcup.yaml
@@ -62,6 +62,9 @@ jobs:
62
runs-on: ubuntu-20.04
63
container:
64
image: debian:12
65
+ env:
66
+ DEBIAN_FRONTEND: noninteractive
67
+ TZ: Asia/Singapore
68
steps:
69
- run: |
70
apt-get update
@@ -87,7 +90,6 @@ jobs:
87
90
- run: which cabal
88
91
- run: cabal --version
89
92
-
93
vanilla-channel:
94
strategy:
95
matrix:
@@ -163,3 +165,18 @@ jobs:
163
165
run: |
164
166
cat $(stack path --stack-root)/hooks/ghc-install.sh
167
shell: bash
168
+
169
+ make:
170
+ runs-on: ubuntu-latest
171
+ container:
172
+ image: rockylinux:9
173
+ steps:
174
+ - run: |
175
+ dnf install -y git nodejs make
176
+ - uses: actions/checkout@v4
177
178
+ set -eux
179
+ cd ghcup
180
+ npx bun install
181
+ BUN="npx bun" make
182
+ git diff --exit-code
0 commit comments