11
11
strategy :
12
12
fail-fast : false
13
13
matrix :
14
- os : [ubuntu-22.04 ]
14
+ os : [macos-14 ]
15
15
16
16
runs-on : ${{ matrix.os }}
17
17
21
21
- name : Check-out repository
22
22
uses : actions/checkout@v4
23
23
24
- - name : Set up screen (Linux)
25
- if : runner.os == 'Linux'
26
- run : |
27
- sudo apt-get install libxkbcommon-x11-0
28
- sudo apt-get install libxcb-icccm4
29
- sudo apt-get install libxcb-image0
30
- sudo apt-get install libxcb-keysyms1
31
- sudo apt-get install libxcb-randr0
32
- sudo apt-get install libxcb-render-util0
33
- sudo apt-get install libxcb-xfixes0
34
- sudo apt-get install libxcb-shape0
35
- sudo apt-get install libxcb-cursor0
36
-
37
24
- name : Install emsdk
38
25
if : False
39
26
shell : bash
@@ -47,19 +34,14 @@ jobs:
47
34
- name : Install Qt for WebAssembly
48
35
shell : bash
49
36
run : |
50
- curl -L -O https://download.qt.io/official_releases/online_installers/qt-unified-linux-x64-online.run
51
- ls -l
52
- chmod u+x qt-unified-linux-x64-online.run
53
- # curl -L -O https://download.qt.io/official_releases/online_installers/qt-unified-linux-arm64-online.run
54
- # ./qt-unified-linux-arm64-online.run \
55
- # --root /home/runner/Qt \
56
- # --accept-licenses \
57
- # --accept-obligations \
58
- # --default-answer \
59
- # --confirm-command \
60
- # install qt.qt6.672.wasm_singlethread qt.qt6.672.qt5compat
61
-
62
- - name : Install Qt for WebAssembly
63
- shell : bash
64
- run : |
65
- ./qt-unified-linux-x64-online.run
37
+ curl -L -O https://download.qt.io/official_releases/online_installers/qt-unified-mac-x64-online.dmg
38
+ chmod u+x qt-unified-mac-x64-online.dmg
39
+ hdiutil attach qt-unified-mac-x64-online.dmg
40
+ /Volumes/qt-online-installer-macOS-x64-4.8.0/qt-online-installer-macOS-x64-4.8.0.app/Contents/MacOS/qt-online-installer-macOS-x64-4.8.0 \
41
+ --root ~/Qt \
42
+ --accept-licenses \
43
+ --accept-obligations \
44
+ --default-answer \
45
+ --confirm-command \
46
+ install qt.qt6.672.wasm_singlethread qt.qt6.672.qt5compat
47
+ hdiutil detach /Volumes/qt-online-installer-macOS-x64-4.8.0
0 commit comments