We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 459dd7e commit 2f97f45Copy full SHA for 2f97f45
.github/workflows/integration-tests.yml
@@ -182,15 +182,16 @@ jobs:
182
if: needs.configuration.outputs.test-arm64 == 'true'
183
uses: actions/checkout@v3
184
185
+ - name: Install deps
186
+ shell: bash
187
+ run: |
188
+ curl -sSL https://get.haskellstack.org/ | sh
189
+
190
- name: Build bindist
191
192
shell: bash
193
run: |
- set -ex
- docker build . -f etc/dockerfiles/arm64.Dockerfile -t stack --build-arg USERID=$(id -u) --build-arg GROUPID=$(id -g)
- rm -rf _release
- mkdir -p _release
- docker run --rm -v $(pwd):/src -w /src stack bash -c "/home/stack/release build"
194
+ stack etc/scripts/release.hs build --alpine
195
196
- name: Upload bindist
197
0 commit comments