File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,9 +11,6 @@ after_script:
1111stages :
1212 - check
1313 - test
14- - build
15- - package
16- - deploy
1714
1815checked_by_cppcheck :
1916 stage : check
@@ -105,113 +102,3 @@ test_macos:
105102 - cmake
106103 - make
107104 - gcc
108-
109- build_win32_ue4 :
110- stage : build
111- script :
112- - ' call "%VS140COMNTOOLS%VsDevCmd.bat"'
113- - ' if exist build rmdir /s /q build'
114- - ' if exist output rmdir /s /q output'
115- - ' mkdir build'
116- - ' cd build'
117- - ' cmake -G "Visual Studio 14 2015" ../'
118- - ' msbuild ./source/libgltf/libgltf.vcxproj /t:Rebuild /p:Configuration="Release" /p:Platform="Win32"'
119- - ' cd ../'
120- artifacts :
121- name : " libgltf_win32.%CI_PIPELINE_ID%.%CI_JOB_ID%"
122- expire_in : 2 days
123- paths :
124- - output/include/*
125- - output/lib/**/*.lib
126- - output/lib/**/**/*.lib
127- when : manual
128- tags :
129- - win32
130- - cmake
131- - vs2015
132-
133- build_win64_ue4 :
134- stage : build
135- script :
136- - ' call "%VS140COMNTOOLS%VsDevCmd.bat"'
137- - ' if exist build rmdir /s /q build'
138- - ' if exist output rmdir /s /q output'
139- - ' mkdir build'
140- - ' cd build'
141- - ' cmake -G "Visual Studio 14 2015 Win64" ../'
142- - ' msbuild ./source/libgltf/libgltf.vcxproj /t:Rebuild /p:Configuration="Release" /p:Platform="x64"'
143- - ' cd ../'
144- artifacts :
145- name : " libgltf_win64.%CI_PIPELINE_ID%.%CI_JOB_ID%"
146- expire_in : 2 days
147- paths :
148- - output/include/*
149- - output/lib/**/*.lib
150- - output/lib/**/**/*.lib
151- when : manual
152- tags :
153- - win64
154- - cmake
155- - vs2015
156-
157- build_linux_ue4 :
158- stage : build
159- script :
160- - ' mkdir build'
161- - ' cd build'
162- - ' cmake -G "Unix Makefiles" ../'
163- - ' make libgltf'
164- - ' cd ../'
165- artifacts :
166- name : " libgltf_linux.${CI_PIPELINE_ID}.${CI_JOB_ID}"
167- expire_in : 2 days
168- paths :
169- - output/include/*
170- - output/lib/**/*.a
171- when : manual
172- tags :
173- - linux
174- - cmake
175- - make
176- - gcc
177-
178- build_macos_ue4 :
179- stage : build
180- script :
181- - ' mkdir build'
182- - ' cd build'
183- - ' cmake -G "Unix Makefiles" ../'
184- - ' make libgltf'
185- - ' cd ../'
186- artifacts :
187- name : " libgltf_macos.${CI_PIPELINE_ID}.${CI_JOB_ID}"
188- expire_in : 2 days
189- paths :
190- - output/include/*
191- - output/lib/**/*.a
192- when : manual
193- tags :
194- - macos
195- - cmake
196- - make
197- - gcc
198-
199- package_all_ue4 :
200- stage : package
201- script :
202- - ' echo package_all'
203- dependencies :
204- - build_win32_ue4
205- - build_win64_ue4
206- - build_macos_ue4
207- - build_linux_ue4
208- artifacts :
209- name : " libgltf.%CI_PIPELINE_ID%.%CI_JOB_ID%"
210- expire_in : 1 week
211- paths :
212- - output/include/**/*
213- - output/lib/**/*
214- when : manual
215- tags :
216- - win64
217-
You can’t perform that action at this time.
0 commit comments