We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f9b1c7 commit 632b246Copy full SHA for 632b246
.github/workflows/integration-tests.yml
@@ -126,6 +126,15 @@ jobs:
126
rm -Rf $(stack path --stack-root)/hooks
127
fi
128
129
+ # Temporary attempt to understand better the build environment. Hopes
130
+ # that `stack exec` is one of the subcommands that automatically
131
+ # launches in a Docker container.
132
+ if [[ "${{ matrix.release-args }}" == "--alpine" ]]
133
+ then
134
+ stack --docker exec -- cat /etc/os-release
135
+ stack --docker exec -- apk list -I
136
+ fi
137
+
138
# Do this in the same step as installing deps to get relevant env var modifications
139
stack etc/scripts/release.hs check ${{ matrix.release-args }}
140
0 commit comments