summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorRory OConnell <[email protected]>2020-07-07 17:34:26 -0700
committerRory OConnell <[email protected]>2020-07-07 17:34:26 -0700
commit8a44903992475bf11f375f7a732e933d2a628fc5 (patch)
tree2cc657f8e6410d7c857efd89350d50a8bed09fcb /.github
parent3a79d6051506da5a830d3272b3075440debf2733 (diff)
downloadmruby-8a44903992475bf11f375f7a732e933d2a628fc5.tar.gz
mruby-8a44903992475bf11f375f7a732e933d2a628fc5.zip
remove verbose test output
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 934460b73..335c0cdf6 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -14,7 +14,7 @@ jobs:
- name: build
run: rake -m
- name: test
- run: rake test -v
+ run: rake test
Ubuntu-1804-gcc:
runs-on: ubuntu-18.04
@@ -29,7 +29,7 @@ jobs:
- name: build
run: rake -m
- name: test
- run: rake test -v
+ run: rake test
Ubuntu-1804-clang:
runs-on: ubuntu-18.04
@@ -44,7 +44,7 @@ jobs:
- name: build
run: rake -m
- name: test
- run: rake test -v
+ run: rake test
macOS:
runs-on: macos-latest
@@ -57,7 +57,7 @@ jobs:
- name: build
run: rake -m
- name: test
- run: rake test -v
+ run: rake test
Windows-MinGW:
runs-on: windows-latest
@@ -66,7 +66,7 @@ jobs:
- name: chocolatey
run: choco install -y ruby gperf
- name: build
- run: rake -E 'STDOUT.sync=true' -v test
+ run: rake -E 'STDOUT.sync=true' test
env:
MRUBY_CONFIG: travis_config.rb
CFLAGS: -g -O1 -Wall -Wundef
@@ -97,6 +97,6 @@ jobs:
MRUBY_CONFIG: travis_config.rb
- name: test
shell: cmd
- run: C:\tools\cygwin\bin\ruby.exe /usr/bin/rake -E 'STDOUT.sync=true' -v test
+ run: C:\tools\cygwin\bin\ruby.exe /usr/bin/rake -E 'STDOUT.sync=true' test
env:
MRUBY_CONFIG: travis_config.rb