Skip to content

Commit

Permalink
using sbt-extras
Browse files Browse the repository at this point in the history
  • Loading branch information
stormcat24 committed Dec 1, 2014
1 parent 38febd3 commit b9304a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ dependencies:

test:
override:
- sbt test
- ./sbt test
post:
- >
if [ -n "${RUN_NIGHTLY_BUILD}" ]; then
echo "start to measure coverage report."
sbt scoverage:test
sbt coveralls
./sbt scoverage:test
./sbt coveralls
fi
- cp -R aeromock-server/target/test-reports/* $CIRCLE_ARTIFACTS
- cp -R aeromock-freemarker/target/test-reports/* $CIRCLE_ARTIFACTS
Expand All @@ -71,7 +71,7 @@ deployment:
owner: CyberAgent
commands:
- ./aeromock-dsl/gradlew -p aeromock-dsl uploadArchives
- sbt publishSigned
- ./sbt publishSigned
next:
branch: /^next\/.+$/
owner: CyberAgent
Expand Down
4 changes: 2 additions & 2 deletions fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def snapshot_release():
local('./aeromock-dsl/gradlew -p aeromock-dsl install uploadArchives')

# build aeromock
local('sbt publishSigned')
local('./sbt publishSigned')

def release(next_version):
# remove SNAPSHOT scala
Expand All @@ -29,7 +29,7 @@ def release(next_version):
local('./aeromock-dsl/gradlew -p aeromock-dsl install uploadArchives')

# build aeromock
local('sbt publishSigned')
local('./sbt publishSigned')

# update versions.txt
update_versions_file(release_version)
Expand Down

0 comments on commit b9304a0

Please sign in to comment.