Skip to content
This repository was archived by the owner on Nov 1, 2017. It is now read-only.

Commit e73b732

Browse files
committed
cibuild should just always set the test run to CI
This makes much more sense given that Janky/Travis both route through `cibuild`.
1 parent 9eaa24d commit e73b732

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

script/cibuild

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ export RBENV_VERSION="2.2.3"
2121
export RUBYLIB=
2222
export RUBYOPT=
2323

24+
export CI="true"
25+
2426
if [ -d /usr/local/share/nodenv ]; then
2527
export NODENV_ROOT=/usr/local/share/nodenv
2628
export PATH=/usr/local/share/nodenv/bin:/usr/local/share/nodenv/shims:$PATH

script/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ script/bootstrap
1717

1818
echo "===> Running tests..."
1919

20-
if [ -n "$JANKY_ID" ]; then
20+
if [ -n "$CI" ]; then
2121
xvfb-run -a bundle exec rake test
2222
else
2323
bundle exec rake test

0 commit comments

Comments
 (0)