Created
May 16, 2014 06:40
-
-
Save Uko/afbf7508e6ec5d957299 to your computer and use it in GitHub Desktop.
This gist is a Travis-CI config to test Pharo project. Please specify a project name. Also pay attention that you probably have to change repo location. If you have only one version (stable or dev) just delete the line defining $VERSION that you don't need
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
language: pharo | |
env: | |
global: | |
- PROJECT=<your_project_name> | |
- REPO=http://www.smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main | |
- PHARO=30 | |
matrix: | |
- VERSION=stable | |
- VERSION=development | |
before_install: | |
- sudo apt-get update | |
- sudo apt-get install libc6:i386 libssl1.0.0:i386 | |
- wget --quiet -O - get.pharo.org/$PHARO+vm | bash | |
install: | |
- ./pharo Pharo.image config $REPO ConfigurationOf$PROJECT --install=$VERSION | |
script: | |
- ./pharo Pharo.image test "$PROJECT.*" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment