Unverified Commit 788ee38b authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5238 from shuujii/fix-typo-in-.github-workflows-build.yml

Fix typo in `.github/workflows/build.yml` [skip travis][skip appveyor]
parents 30692992 366780f0
......@@ -10,7 +10,7 @@ jobs:
!contains(github.event.head_commit.message, '[skip gha]')
runs-on: ubuntu-latest
steps:
- run: echo skip
- run: echo not skip
Ubuntu-1604:
needs: Check-Skip
......@@ -24,7 +24,7 @@ jobs:
run: ruby -v
- name: Compiler version
run: ${{ env.CC }} --version
- name: Build and Test
- name: Build and test
run: rake -m && rake test
Ubuntu-1804-gcc:
......@@ -39,7 +39,7 @@ jobs:
run: ruby -v
- name: Compiler version
run: ${{ env.CC }} --version
- name: Build and Test
- name: Build and test
run: rake -m && rake test
Ubuntu-1804-clang:
......@@ -54,7 +54,7 @@ jobs:
run: ruby -v
- name: Compiler version
run: ${{ env.CC }} --version
- name: Build and Test
- name: Build and test
run: rake -m && rake test
macOS:
......@@ -69,7 +69,7 @@ jobs:
run: ruby -v
- name: Compiler version
run: ${{ env.CC }} --version
- name: Build and Test
- name: Build and test
run: rake -m && rake test
Windows-MinGW:
......@@ -84,7 +84,7 @@ jobs:
run: ruby -v
- name: Compiler version
run: ${{ env.CC }} --version
- name: Build and Test
- name: Build and test
# If build and test are separated like `rake && rake test`, somehow
# it will be fully built even at `rake test`, so it is not separated.
run: rake -E STDOUT.sync=true test
......@@ -128,7 +128,7 @@ jobs:
run: ruby -v
- name: Compiler version
run: ${{ env.CC }} --version
- name: Build and Test
- name: Build and test
shell: cmd
run: |
ruby /usr/bin/rake -E STDOUT.sync=true -m
......@@ -146,7 +146,7 @@ jobs:
- uses: actions/checkout@v2
- name: Ruby version
run: ruby -v
- name: Build and Test
- name: Build and test
shell: cmd
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment