Created
April 3, 2015 22:23
-
-
Save danielberkompas/9f96f2f24af3546d70ff to your computer and use it in GitHub Desktop.
Build PLTs on Travis
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: elixir | |
elixir: | |
- 1.0.0 | |
- 1.0.1 | |
- 1.0.2 | |
- 1.0.3 | |
otp_release: | |
- 17.4 | |
- 17.3 | |
- 17.2 | |
- 17.1 | |
- 17.0 | |
before_script: | |
- export PATH=`pwd`/elixir/bin:$PATH | |
- git clone git://github.com/jeremyjh/dialyxir.git | |
- cd dialyxir | |
- mix archive.build | |
- mix archive.install --force | |
- cd .. | |
- mix local.hex --force | |
- mix deps.get --only test | |
script: | |
- MIX_ENV=test mix dialyzer.plt | |
after_script: | |
- curl -sL https://raw.githubusercontent.com/travis-ci/artifacts/master/install | bash | |
- /home/travis/bin/artifacts upload --key $ARTIFACTS_KEY --secret $ARTIFACTS_SECRET --bucket $ARTIFACTS_BUCKET test/dialyzer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment