ci: Don't run both package steps in the same build

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-08-03 15:54:46 +02:00
parent f5052f45c6
commit 8af061ea02
+2 -2
View File
@@ -69,8 +69,8 @@ let package_runners = [];
'--config', 'RelWithDebInfo',
'--target', 'INSTALL'
].concat(cmake_build_extra)));
package_runners.push(new runner('64-bit', 'cmake', [
'--build', 'build/64',
package_runners.push(new runner('32-bit', 'cmake', [
'--build', 'build/32',
'--target', 'PACKAGE_7Z',
'--config', 'RelWithDebInfo'
].concat(cmake_build_extra)));