Skip to content

Commit

Permalink
Stamp the whole build script
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanhs committed Jun 28, 2017
1 parent 47faf1d commit b689e46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -171,16 +171,16 @@ before_script:
if [[ "$SKIP_BUILD" == true ]]; then
export RUN_SCRIPT="echo 'skipping, not a full build'";
else
RUN_SCRIPT="stamp src/ci/init_repo.sh . $HOME/rustsrc";
RUN_SCRIPT="src/ci/init_repo.sh . $HOME/rustsrc";
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
export RUN_SCRIPT="$RUN_SCRIPT && stamp src/ci/run.sh";
export RUN_SCRIPT="$RUN_SCRIPT && src/ci/run.sh";
else
export RUN_SCRIPT="$RUN_SCRIPT && stamp src/ci/docker/run.sh $IMAGE";
export RUN_SCRIPT="$RUN_SCRIPT && src/ci/docker/run.sh $IMAGE";
fi
fi
script:
- sh -x -c "$RUN_SCRIPT"
- stamp sh -x -c "$RUN_SCRIPT"

after_success:
- >
Expand Down

0 comments on commit b689e46

Please sign in to comment.