File tree 4 files changed +25
-10
lines changed
4 files changed +25
-10
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-20.04
13
13
strategy :
14
14
matrix :
15
- qt-version : ['6.6 ']
15
+ qt-version : ['6.7 ']
16
16
qt-target : ['desktop']
17
17
qt-modules : ['']
18
18
arch : ['amd64']
@@ -37,10 +37,11 @@ jobs:
37
37
# # Install Qt
38
38
- if : contains(matrix.arch, 'amd64')
39
39
name : Install Qt (Ubuntu)
40
- uses : jurplel/install-qt-action@v3
40
+ uses : jurplel/install-qt-action@v4
41
41
with :
42
42
version : ${{ matrix.qt-version }}
43
43
host : ' linux'
44
+ arch : ' linux_gcc_64'
44
45
target : ${{ matrix.qt-target }}
45
46
modules : ${{ matrix.qt-modules }}
46
47
- if : " !contains(matrix.arch, 'amd64')"
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-20.04
10
10
strategy :
11
11
matrix :
12
- qt-version : ['6.6 ']
12
+ qt-version : ['6.7 ']
13
13
qt-target : ['desktop']
14
14
qt-modules : ['']
15
15
arch : ['amd64']
@@ -48,10 +48,11 @@ jobs:
48
48
# Install Qt
49
49
- if : contains(matrix.arch, 'amd64')
50
50
name : Install Qt
51
- uses : jurplel/install-qt-action@v3
51
+ uses : jurplel/install-qt-action@v4
52
52
with :
53
53
version : ${{ matrix.qt-version }}
54
54
host : ' linux'
55
+ arch : ' linux_gcc_64'
55
56
target : ${{ matrix.qt-target }}
56
57
modules : ${{ matrix.qt-modules }}
57
58
- if : " !contains(matrix.arch, 'amd64')"
91
92
runs-on : windows-latest
92
93
strategy :
93
94
matrix :
94
- qt-version : ['6.6 ']
95
+ qt-version : ['6.7 ']
95
96
qt-target : ['desktop']
96
97
qt-modules : ['']
97
98
mingw-version : ['11.2.0']
@@ -123,7 +124,7 @@ jobs:
123
124
shell : bash
124
125
# Install Qt
125
126
- name : Install Qt
126
- uses : jurplel/install-qt-action@v3
127
+ uses : jurplel/install-qt-action@v4
127
128
with :
128
129
version : ${{ matrix.qt-version }}
129
130
host : ' windows'
@@ -155,6 +156,12 @@ jobs:
155
156
cd win_release
156
157
windeployqt ${{ env.executable_name }}.exe --qmldir ..\win_build\src || exit 5
157
158
shell : cmd
159
+ - name : Copy libraries
160
+ run : |
161
+ cp ${QT_ROOT_DIR}/bin/libgcc_s_seh-1.dll win_release/
162
+ cp ${QT_ROOT_DIR}/bin/libstdc++-6.dll win_release/
163
+ cp ${QT_ROOT_DIR}/bin/libwinpthread-1.dll win_release/
164
+ shell : bash
158
165
# Update Windows repository
159
166
- if : env.create_windows_installer == 1 && env.is_prerelease == 1
160
167
name : Do not update Windows repo if this is a pre-release
Original file line number Diff line number Diff line change 24
24
sudo apt-get install -y nlohmann-json3-dev libutfcpp-dev xvfb libxcb-cursor0
25
25
shell : bash
26
26
- name : Install Qt
27
- uses : jurplel/install-qt-action@v3
27
+ uses : jurplel/install-qt-action@v4
28
28
with :
29
- version : ' 6.6.*'
29
+ version : ' 6.7.*'
30
+ arch : ' linux_gcc_64'
30
31
- name : Configure CMake
31
32
run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DSCRATCHCPP_PLAYER_BUILD_UNIT_TESTS=ON
32
33
Original file line number Diff line number Diff line change 12
12
runs-on : windows-latest
13
13
strategy :
14
14
matrix :
15
- qt-version : ['6.6 ']
15
+ qt-version : ['6.7 ']
16
16
qt-target : ['desktop']
17
17
qt-modules : ['']
18
18
mingw-version : ['11.2.0']
35
35
shell : bash
36
36
# # Install Qt
37
37
- name : Install Qt
38
- uses : jurplel/install-qt-action@v3
38
+ uses : jurplel/install-qt-action@v4
39
39
with :
40
40
version : ${{ matrix.qt-version }}
41
41
host : ' windows'
67
67
cd win_release
68
68
windeployqt ${{ env.executable_name }}.exe --qmldir ..\win_build\src || exit 5
69
69
shell : cmd
70
+ - name : Copy libraries
71
+ run : |
72
+ cp ${QT_ROOT_DIR}/bin/libgcc_s_seh-1.dll win_release/
73
+ cp ${QT_ROOT_DIR}/bin/libstdc++-6.dll win_release/
74
+ cp ${QT_ROOT_DIR}/bin/libwinpthread-1.dll win_release/
75
+ shell : bash
70
76
# # Upload
71
77
- name : Upload artifacts
72
78
uses : actions/upload-artifact@v3
You can’t perform that action at this time.
0 commit comments