Skip to content

Instantly share code, notes, and snippets.

@Uko
Created May 16, 2014 06:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Uko/afbf7508e6ec5d957299 to your computer and use it in GitHub Desktop.
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
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