File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -182,15 +182,17 @@ jobs:
182
182
if : needs.configuration.outputs.test-arm64 == 'true'
183
183
uses : actions/checkout@v3
184
184
185
+ - name : Install deps
186
+ if : needs.configuration.outputs.test-arm64 == 'true'
187
+ shell : bash
188
+ run : |
189
+ curl -sSL https://get.haskellstack.org/ | sh
190
+
185
191
- name : Build bindist
186
192
if : needs.configuration.outputs.test-arm64 == 'true'
187
193
shell : bash
188
194
run : |
189
- set -ex
190
- docker build . -f etc/dockerfiles/arm64.Dockerfile -t stack --build-arg USERID=$(id -u) --build-arg GROUPID=$(id -g)
191
- rm -rf _release
192
- mkdir -p _release
193
- docker run --rm -v $(pwd):/src -w /src stack bash -c "/home/stack/release build"
195
+ stack etc/scripts/release.hs build --alpine
194
196
195
197
- name : Upload bindist
196
198
if : needs.configuration.outputs.test-arm64 == 'true'
You can’t perform that action at this time.
0 commit comments