Skip to content

Commit

Permalink
start working on creating a sample testTravisCI.sh and travisCI.st to…
Browse files Browse the repository at this point in the history
… duplicate functionality described in dalehenrich/builderCI#24
  • Loading branch information
Dale Henrichs committed Mar 7, 2013
1 parent cb01b9e commit f065edc
Showing 1 changed file with 5 additions and 19 deletions.
24 changes: 5 additions & 19 deletions .travis.yml
Expand Up @@ -7,32 +7,18 @@ language: erlang
# Expect travisCI failure for #stable variant

env:
- ST=Squeak4.3 TRAVIS_SCRIPT=baselineTravisCI.st
- ST=Squeak4.3 TRAVIS_SCRIPT=configuration090TravisCI.st
- ST=Squeak4.3 TRAVIS_SCRIPT=configurationStableTravisCI.st
- ST=PharoCore-1.3 TRAVIS_SCRIPT=baselineTravisCI.st
- ST=PharoCore-1.3 TRAVIS_SCRIPT=configuration090TravisCI.st
- ST=PharoCore-1.3 TRAVIS_SCRIPT=configurationStableTravisCI.st
- ST=Pharo-1.4 BASELINE=Sample LOADS="'default' 'Tests'"
- ST=Pharo-1.4 CONFIGURATION=Sample LOADS="'default' 'Tests'" VERSION="0.8.0"
- ST=Pharo-1.4 CONFIGURATION=Sample LOADS="'default' 'Tests'" VERSION="0.9.1"

install:
- export PROJECT_HOME="$(pwd)"
- cd $HOME
- wget -O builderCI.zip https://github.com/dalehenrich/builderCI/zipball/master
- wget -q -O builderCI.zip https://github.com/dalehenrich/builderCI/zipball/master
- unzip -q builderCI.zip
- cd dalehenrich-builderCI*
- source build_env_vars
- ln -s $PROJECT_HOME $GIT_PATH
- ./build_image.sh

script:

# - echo "running: $PROJECT_HOME/tests/$TRAVIS_SCRIPT"
- ./build.sh -i $ST -s latAmMirror.st -m -f "$PROJECT_HOME/tests/$TRAVIS_SCRIPT" -o travisCI
- cd "${BUILD_PATH}/travisCI/"
- if ( test -e PharoDebug.log ); then cat PharoDebug.log; fi
- if ( test -e PharoDebug.log ); then die; fi
- if ( test -e SqueakDebug.log ); then cat SqueakDebug.log; fi
- if ( test -e SqueakDebug.log ); then die; fi
- if ( test -e TravisCISuccess.txt ); then cat TravisCISuccess.txt; fi
- if ( test -e TravisCIFailure.txt ); then cat TravisCIFailure.txt; fi
- if ( test -e TravisCIFailure.txt ); then die; fi
script: $BUILDER_CI_HOME/testTravisCI.sh

0 comments on commit f065edc

Please sign in to comment.