Compare commits

..

No commits in common. "b1d84f790cc07c9bd9fd7f768a63884906a10a03" and "5d918af45c88f95290acd246a9c72ca5bd8fb86c" have entirely different histories.

View File

@ -47,16 +47,17 @@ variables:
if [ -n "${BUILD_CMD}" ]; then
${BUILD_CMD}
else
ninja -v all
cmake --parallel --verbose --build .
fi
- >
if [ -z "${CI_SHARED_ENVIRONMENT+x}" ]; then
if [ -n "${PACKAGE_CMD}" ]; then
${PACKAGE_CMD}
else
ninja -v install
ninja package
ninja package_source
cmake --verbose --install
cpack -G DEB
cpack -G TGZ
cpack --config CPackSourceConfig.cmake
fi
fi
- echo "${CI_COMMIT_SHA}" > "../${CI_JOB_NAME}.status"