Skip to content

Commit

Permalink
Fix repo name in Travis config (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
2m authored and ennru committed Jun 14, 2018
1 parent 6e3bd76 commit beaed27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
jobs:
include:
- stage: check
script: sbt scalafmtCheck || { echo "[error] Unformatted code found. Please run 'test:compile' and commit the reformatted code."; false; }
script: sbt scalafmtCheck || { echo "[error] Unformatted code found. Please run 'Test/compile' and commit the reformatted code."; false; }
env: SCALAFMT_CHECK
- script: sbt scalafmtSbtCheck || { echo "[error] Unformatted sbt code found. Please run 'scalafmtSbt' and commit the reformatted code."; false; }
env: SCALAFMT_SBT_CHECK
Expand Down Expand Up @@ -49,11 +49,11 @@ stages:

# runs on main repo master commits and version-tagged commits
- name: whitesource
if: repo = akka/reactive-kafka AND ( ( branch = master AND type = push ) OR tag =~ ^v )
if: repo = akka/alpakka-kafka AND ( ( branch = master AND type = push ) OR tag =~ ^v )

# runs on main repo master commits and version-tagged commits
- name: publish
if: repo = akka/reactive-kafka AND ( ( branch = master AND type = push ) OR tag =~ ^v )
if: repo = akka/alpakka-kafka AND ( ( branch = master AND type = push ) OR tag =~ ^v )

before_cache:
- find $HOME/.ivy2/ -name "ivydata-*.properties" -print -delete
Expand Down

0 comments on commit beaed27

Please sign in to comment.