We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 896ccc6 commit fefc420Copy full SHA for fefc420
1 file changed
.github/workflows/CI-unixish-docker.yml
@@ -54,6 +54,11 @@ jobs:
54
run: |
55
apk add cmake make g++
56
57
+ - name: Install missing software (gui) on Alpine
58
+ if: contains(matrix.image, 'alpine')
59
+ run: |
60
+ apk add qt6-qtbase
61
+
62
# needs to be called after the package installation since
63
# - it doesn't call "apt-get update"
64
- name: ccache
@@ -99,7 +104,7 @@ jobs:
99
104
- name: Install missing software on Alpine
100
105
if: contains(matrix.image, 'alpine')
101
106
102
- apk add make g++ pcre
107
+ apk add make g++ pcre-dev
103
108
109
110
0 commit comments