From: Yukihiro "Matz" Matsumoto Date: Thu, 4 Jun 2020 09:24:58 +0000 (+0900) Subject: Remove `rake -v` option from GitHub Actions. X-Git-Tag: 2.1.2-rc~34 X-Git-Url: https://repo.or.cz/mruby.git/commitdiff_plain/4e40169ed6d200918e542aa8d8e64634794e1864 Remove `rake -v` option from GitHub Actions. --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index da213859c..81deb4515 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,7 +84,7 @@ jobs: echo '::set-env name=PATH::C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin' - name: build and test shell: cmd - run: C:\tools\cygwin\bin\ruby.exe /usr/bin/rake -m -j4 -v -E 'STDOUT.sync=true' test + run: C:\tools\cygwin\bin\ruby.exe /usr/bin/rake -m -j4 -E 'STDOUT.sync=true' test env: MRUBY_CONFIG: travis_config.rb @@ -98,7 +98,7 @@ jobs: shell: cmd run: | call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" - rake -E "STDOUT.sync=true" -m -j4 -v test + rake -E "STDOUT.sync=true" -m -j4 test env: MRUBY_CONFIG: appveyor_config.rb # TODO(take-cheeze): Re-enable /O2