Skip to content
This repository was archived by the owner on Jan 20, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all 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
18 changes: 18 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
container:
image: bigtruedata/sbt:latest
cpu: 4
memory: 12G

test_task:
env:
LOG4J: file://$CIRRUS_WORKING_DIR/project/travis-log4j.properties
matrix:
TRAVIS_SCALA_VERSION: 2.12.4
TRAVIS_SCALA_VERSION: 2.11.12
ivy_cache:
folder: $HOME/.ivy2/cache
fingerprint_script: echo $TRAVIS_SCALA_VERSION
sbt_cache:
folder: $HOME/.sbt
fingerprint_script: echo $TRAVIS_SCALA_VERSION
test_script: ./sbt -Dlog4j.configuration=$LOG4J -DsequentialExecution=true ++$TRAVIS_SCALA_VERSION clean coverage test coverageReport mimaReportBinaryIssues
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ val sharedSettings = extraSettings ++ executionSettings ++ Seq(
resolvers ++= Seq(
Opts.resolver.sonatypeSnapshots,
Opts.resolver.sonatypeReleases,
"Clojars Repository" at "http://clojars.org/repo",
"Conjars Repository" at "http://conjars.org/repo",
"Twitter Maven" at "http://maven.twttr.com"
"Clojars Repository" at "https://clojars.org/repo",
"Conjars Repository" at "https://conjars.org/repo",
"Twitter Maven" at "https://maven.twttr.com"
),

scalacOptions ++= Seq(
Expand Down