summaryrefslogtreecommitdiff
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-09-27 21:01:36 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-09-27 21:11:56 +0900
commit09863a4cd8eb40b34b310083d8cdda899ab5bcc1 (patch)
tree19393e4cae1ef72945003977ffe04d672aee60e5 /.cirrus.yml
parentdfa67db62bbffd9f6900b46aa04309ea77acf673 (diff)
Unexport `CIRRUS_COMMIT_MESSAGE`
Cirrus CI sets this environment variable from the pull request description. However it does not seem any locales other than C are installed, the default external encoding is US-ASCII. That means this environment variable will be an invalid byte sequence, and some tests fail.
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 36a1b67e9c..ee08af05a6 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -58,5 +58,7 @@ task:
make_install_script: make install
install_gems_for_test_script: $RUBY_PREFIX/bin/gem install --no-doc timezone tzinfo
make_test-tool_script: make test-tool
- make_test-all_script: make test-all
+ make_test-all_script:
+ - export -n CIRRUS_COMMIT_MESSAGE
+ - make test-all
make_test-spec_script: make test-spec