Skip to content

Instantly share code, notes, and snippets.

@danielberkompas
Created April 3, 2015 22:23
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 danielberkompas/9f96f2f24af3546d70ff to your computer and use it in GitHub Desktop.
Save danielberkompas/9f96f2f24af3546d70ff to your computer and use it in GitHub Desktop.
Build PLTs on Travis
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