File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change 54
54
if : runner.os == 'Linux' && !startsWith(matrix.container, 'alpine')
55
55
run : sudo apt-get update && sudo apt-get install libgtk-3-dev
56
56
57
+ - name : Install system dependencies (Windows)
58
+ if : ${{ startsWith(matrix.os, 'windows') }}
59
+ uses : msys2/setup-msys2@v2
60
+ with :
61
+ path-type : inherit
62
+ install : >-
63
+ mingw-w64-x86_64-pkg-config
64
+ mingw-w64-x86_64-gtk3
65
+
57
66
- name : Install system dependencies (macOS)
58
67
if : runner.os == 'macOS'
59
68
run : brew install cairo gtk+3 pkg-config
@@ -106,16 +115,6 @@ jobs:
106
115
path : ${{ steps.setup.outputs.cabal-store }}
107
116
key : ${{ steps.cache.outputs.cache-primary-key }}
108
117
109
- - name : Install system dependencies (Windows)
110
- if : ${{ startsWith(matrix.os, 'windows') }}
111
- uses : msys2/setup-msys2@v2
112
- with :
113
- path-type : inherit
114
- install : >-
115
- mingw-w64-x86_64-pkg-config
116
- mingw-w64-x86_64-gtk3
117
- mingw-w64-x86_64-pango
118
-
119
118
- name : Build
120
119
run : cabal build all
121
120
You can’t perform that action at this time.
0 commit comments