Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
fix circle yaml bug that no space after env-var assignment symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwu committed May 23, 2017
1 parent 2941563 commit 976a87f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ machine:
java:
version: oraclejdk8
environment:
browser:FF
DBUS_SESSION_BUS_ADDRESS:/dev/null
browser: "FF"
DBUS_SESSION_BUS_ADDRESS: "/dev/null"

dependencies:
pre:
Expand All @@ -19,6 +19,8 @@ dependencies:

test:
override:
- echo "user:$CIRCLE_PROJECT_USERNAME, proj:$CIRCLE_PROJECT_REPONAME, branch:$CIRCLE_BRANCH"
- echo "x-win:$DISPLAY, lang:$LANG"
- mvn clean test
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
Expand Down

0 comments on commit 976a87f

Please sign in to comment.