Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Travis: introduce publish stage / drop Interplay #181

Merged
merged 9 commits into from
May 20, 2020
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
version: ~> 1.0

language: scala

scala:
Expand All @@ -22,6 +24,19 @@ script:
- pushd samples/compile-timeDI/ && sbt ++$TRAVIS_SCALA_VERSION test && popd
- pushd samples/runtimeDI/ && sbt ++$TRAVIS_SCALA_VERSION test && popd

jobs:
include:
- stage: deploy
name: "TEMP Publish artifacts to Bintray"
script: sbt +mimaReportBinaryIssues
scala: 2.13.1
env: TRAVIS_JDK=11

stages:
- name: test
- name: publish
# if: ((branch = master AND type = push) OR (tag IS present)) AND NOT fork
ennru marked this conversation as resolved.
Show resolved Hide resolved

cache:
directories:
- $HOME/.coursier/cache
Expand Down