Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Kart-Public
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kart Krew
Kart-Public
Commits
abaa8730
Commit
abaa8730
authored
6 years ago
by
Marco Z
Browse files
Options
Downloads
Patches
Plain Diff
Revised comments
parent
578a4fe8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.travis.yml
+9
-1
9 additions, 1 deletion
.travis.yml
with
9 additions
and
1 deletion
.travis.yml
+
9
−
1
View file @
abaa8730
...
...
@@ -564,16 +564,20 @@ addons:
before_install
:
# Initialize Deployer defaults
-
. ./deployer/travis/deployer_defaults.sh
# Initialize Deployer; check if Deployer is enabled
# This needs to be run in the current shell so that $__DPL_ACTIVE is set for this session
-
. ./deployer/travis/deployer.sh
# Also check if we should now terminate
# Also check if we should now terminate -- see `deployer.sh` for conditions.
# This should never happen on non-release buildbots when Deployer is not triggered.
-
if [[ "$__DPL_TRY_TERMINATE_EARLY" == "1" ]]; then
if [[ "$__DPL_ACTIVE" != "1" ]]; then
echo "Exiting early because this job is not deploying.";
exit;
fi;
fi
# If we're triggered by release tag, force ASSET_FILES_OPTIONAL_GET=1
-
if [[ "$__DPL_TAG_ELIGIBLE" = "1" ]]; then
ASSET_FILES_OPTIONAL_GET=1;
...
...
@@ -606,6 +610,7 @@ before_script:
fi
# Get asset files (required for MD5)
# See `deployer_defaults.sh` for asset download path
-
if [[ "$ASSET_ARCHIVE_PATH" != "" ]]; then
if [ -f "$(basename $ASSET_ARCHIVE_PATH)" ]; then
echo "$(basename $ASSET_ARCHIVE_PATH) cache date -- $($STATCMD $(basename $ASSET_ARCHIVE_PATH))";
...
...
@@ -655,5 +660,8 @@ script:
after_success
:
# Run the Deployer scripts
-
if [[ "$__DPL_ACTIVE" != "1" ]]; then
exit;
fi;
-
. ../deployer/travis/deployer_ftp.sh
-
. ../deployer/travis/deployer_dput.sh
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment