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

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2019-08-03 15:56:48 +02:00
parent 93ba39545f
commit 54856566d4
1 changed files with 2 additions and 2 deletions

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)));