summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-16 18:41:11 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-16 18:41:11 +0900
commit19d592dc82a31adf0bb6f027392cae69615c2394 (patch)
tree71053a17e67ac89d4de5bf71200d7fbf13a84030 /.travis.yml
parent76c6cf2cbc549dead57725ccd934a42df5bc150d (diff)
Somehow `if` didn't work
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index 0dbcde7464..f6822b913d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -413,12 +413,7 @@ before_script:
- "> .rbconfig.time"
- sed -f tool/prereq.status template/Makefile.in common.mk > Makefile
- date; make touch-unicode-files
- - |-
- date
- if ! make -s $JOBS $UPDATE_UNICODE up; then
- # Prevent random failure by missing build dependency like https://travis-ci.org/ruby/ruby/jobs/558571461
- make --debug -s $JOBS $UPDATE_UNICODE up
- fi
+ - date; make -s $JOBS $UPDATE_UNICODE up || make --debug -s $JOBS $UPDATE_UNICODE up
- date; make -s $JOBS srcs
- rm -f config.status Makefile rbconfig.rb .rbconfig.time
- |-