diff options
| author | Antonin Descampe <antonin@gmail.com> | 2016-05-15 13:15:01 +0200 |
|---|---|---|
| committer | Antonin Descampe <antonin@gmail.com> | 2016-05-15 13:15:01 +0200 |
| commit | 7269c8f7a6521568205583671a4ab45d149cc1af (patch) | |
| tree | c013349c99cac5f9273365d7bd6bc07e37ba9cad /tools | |
| parent | a66c3915190e5c75b5a9d66906685e1709e5ad5c (diff) | |
WIP automatic deployment
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/ctest_scripts/travis-ci.cmake | 10 | ||||
| -rwxr-xr-x | tools/travis-ci/run.sh | 32 |
2 files changed, 27 insertions, 15 deletions
diff --git a/tools/ctest_scripts/travis-ci.cmake b/tools/ctest_scripts/travis-ci.cmake index f8c50e5b..05a0e002 100644 --- a/tools/ctest_scripts/travis-ci.cmake +++ b/tools/ctest_scripts/travis-ci.cmake @@ -123,6 +123,12 @@ endif() set( CTEST_SOURCE_DIRECTORY "$ENV{OPJ_SOURCE_DIR}") set( CTEST_BINARY_DIRECTORY "${CTEST_DASHBOARD_ROOT}") +#---------------------- +# Package parameters in case of deployment +# Might add more parameters later on +set( CPACK_GENERATOR "ZIP" ) + + #--------------------- # Files to submit to the dashboard set (CTEST_NOTES_FILES @@ -147,5 +153,9 @@ endif() if ("$ENV{OPJ_DO_SUBMIT}" STREQUAL "1") ctest_submit() endif() +# Generate package if deployment +if( "$ENV{OPJ_CI_DEPLOY}" STREQUAL "1") + ctest_build(BUILD "${CTEST_BINARY_DIRECTORY}" TARGET "package") +endif() # Do not clean, we'll parse the log for known failure #ctest_empty_binary_directory( "${CTEST_BINARY_DIRECTORY}" ) diff --git a/tools/travis-ci/run.sh b/tools/travis-ci/run.sh index 62562c0a..440945aa 100755 --- a/tools/travis-ci/run.sh +++ b/tools/travis-ci/run.sh @@ -176,6 +176,14 @@ set -x # travis-ci doesn't dump cmake version in system info, let's print it cmake --version +# Check condition to deploy +#if [ "${OPJ_CI_INCLUDE_IF_DEPLOY:-}" == "1" ] && [ [ "${TRAVIS_TAG:-}" != "" ] || [ "${APPVEYOR_REPO_TAG:-}" == "true" ] ]; then +if [ "${OPJ_CI_INCLUDE_IF_DEPLOY:-}" == "1" ]; then + OPJ_CI_DEPLOY=1 +else + OPJ_CI_DEPLOY=0 +fi + export TRAVIS_OS_NAME=${TRAVIS_OS_NAME} export OPJ_SITE=${OPJ_SITE} export OPJ_BUILDNAME=${OPJ_BUILDNAME} @@ -183,12 +191,21 @@ export OPJ_SOURCE_DIR=$(opjpath -m ${OPJ_SOURCE_DIR}) export OPJ_BINARY_DIR=$(opjpath -m ${PWD}/build) export OPJ_BUILD_CONFIGURATION=${OPJ_CI_BUILD_CONFIGURATION} export OPJ_DO_SUBMIT=${OPJ_DO_SUBMIT} +export OPJ_CI_DEPLOY=${OPJ_CI_DEPLOY} ctest -S ${OPJ_SOURCE_DIR}/tools/ctest_scripts/travis-ci.cmake -V || true # ctest will exit with various error codes depending on version. # ignore ctest exit code & parse this ourselves set +x +# Push Artifact in APPVEYOR case +if [ "${OPJ_CI_DEPLOY:-}" == "1" ] && [ "${APPVEYOR_REPO_TAG:-}" == "true" ]; then + appveyor PushArtifact "openjpeg-*.zip" +fi +if [ "${OPJ_CI_DEPLOY:-}" == "1" ]; then + echo "ready to deploy $(ls openjpeg*.zip) to GitHub releases" +fi + # let's parse configure/build/tests for failure echo " @@ -272,19 +289,4 @@ New/unknown test failure found!!! fi fi -echo "OPJ_CI_DEPLOY: ${OPJ_CI_DEPLOY:-}" -echo "TRAVIS_TAG: ${TRAVIS_TAG:-}" -echo "APPVEYOR_REPO_TAG: ${APPVEYOR_REPO_TAG:-}" -echo "APPVEYOR_REPO_TAG_NAME: ${APPVEYOR_REPO_TAG_NAME:-}" -if [ "${OPJ_CI_DEPLOY:-}" == "1" ]; then - cpack --config ${OPJ_SOURCE_DIR}/cmake/OpenJPEGCPack.cmake -V -G ZIP -P "OpenJPEG-${TRAVIS_TAG:-}-${OPJ_BUILDNAME_TEST}.zip" - # if [ "${TRAVIS_TAG:-}" != "" ]; then - # cpack --config ${OPJ_SOURCE_DIR}/cmake/OpenJPEGCPack.cmake -V -G ZIP -P "OpenJPEG-${TRAVIS_TAG}-${OPJ_BUILDNAME_TEST}.zip" - # fi - # if [ "${APPVEYOR_REPO_TAG:-}" == "true" ]; then - # cpack -G ZIP -P "OpenJPEG-${APPVEYOR_REPO_TAG_NAME}-${OPJ_BUILDNAME_TEST}.zip" - # appveyor PushArtifact "OpenJPEG-${APPVEYOR_REPO_TAG_NAME}-${OPJ_BUILDNAME_TEST}.zip" - # fi -fi - exit ${OPJ_CI_RESULT} |
