-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added hour and minute to tags and ISO. This matches the ISO "buildnum"
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,14 @@ services: | |
install: true | ||
script: | ||
- curl -LOJ ${ISO_MIRROR} | ||
- travis_wait 30 docker run -a stdout -v ${PWD}:/sources -v ${PWD}/build:/output:Z -w /sources ${DOCKER_IMAGE}:latest /sources/master-iso.sh $(basename ${ISO_MIRROR}) /output/rocknsm-2.1-nightly-$(date +%Y%m%d).iso | ||
- travis_wait 30 docker run -a stdout -v ${PWD}:/sources -v ${PWD}/build:/output:Z -w /sources ${DOCKER_IMAGE}:latest /sources/master-iso.sh $(basename ${ISO_MIRROR}) /output/rocknsm-2.1-nightly-$(date +%Y%m%d-%H%M).iso | ||
- echo "TRAVIS_TAG=${TRAVIS_TAG}" | ||
before_deploy: | ||
# Set up git user name and tag this commit | ||
- git config --local user.name "Travis CI" | ||
- git config --local user.email "[email protected]" | ||
- git checkout ${TRAVIS_BRANCH} | ||
- git tag "nightly-$(date +'%Y%m%d')" | ||
- git tag "nightly-$(date +'%Y%m%d-%H%M')" | ||
deploy: | ||
- provider: releases | ||
skip_cleanup: true | ||
|