File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,35 @@ jobs:
106
106
with :
107
107
name : DLTViewer-${{ matrix.macos }}-${{ matrix.abi }}
108
108
path : build/dist/DLTViewer*.tgz
109
+
110
+ buildMacOS15 :
111
+ name : Build macOS
112
+ runs-on : macos-15
113
+ strategy :
114
+ fail-fast : false
115
+ matrix :
116
+ abi : [ arm64 ]
117
+ xcode : [ Xcode ]
118
+
119
+ steps :
120
+ - name : Checkout
121
+ uses : actions/checkout@v4
122
+ with :
123
+ fetch-depth : 0
124
+ submodules : true
125
+ - name : Investigate available XCode versions
126
+ run : ls -n /Applications/ | grep Xcode*
127
+ - name : Set XCode Version
128
+ run : |
129
+ sudo xcode-select -s /Applications/${{ matrix.xcode }}.app
130
+ xcodebuild -version
131
+ xcode-select --print-path
132
+ - name : Install build environment
133
+ run : scripts/darwin/install_qt6.sh
134
+ - name : Show cmake version
135
+ run : cmake --version
136
+ - name : Build project
137
+ run : scripts/darwin/build_cmake_qt6.sh
109
138
110
139
111
140
buildUbuntu22and24 :
You can’t perform that action at this time.
0 commit comments