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: ...@@ -10,7 +10,7 @@ jobs:
!contains(github.event.head_commit.message, '[skip gha]') !contains(github.event.head_commit.message, '[skip gha]')
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: echo skip - run: echo not skip
Ubuntu-1604: Ubuntu-1604:
needs: Check-Skip needs: Check-Skip
...@@ -24,7 +24,7 @@ jobs: ...@@ -24,7 +24,7 @@ jobs:
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
run: ${{ env.CC }} --version run: ${{ env.CC }} --version
- name: Build and Test - name: Build and test
run: rake -m && rake test run: rake -m && rake test
Ubuntu-1804-gcc: Ubuntu-1804-gcc:
...@@ -39,7 +39,7 @@ jobs: ...@@ -39,7 +39,7 @@ jobs:
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
run: ${{ env.CC }} --version run: ${{ env.CC }} --version
- name: Build and Test - name: Build and test
run: rake -m && rake test run: rake -m && rake test
Ubuntu-1804-clang: Ubuntu-1804-clang:
...@@ -54,7 +54,7 @@ jobs: ...@@ -54,7 +54,7 @@ jobs:
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
run: ${{ env.CC }} --version run: ${{ env.CC }} --version
- name: Build and Test - name: Build and test
run: rake -m && rake test run: rake -m && rake test
macOS: macOS:
...@@ -69,7 +69,7 @@ jobs: ...@@ -69,7 +69,7 @@ jobs:
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
run: ${{ env.CC }} --version run: ${{ env.CC }} --version
- name: Build and Test - name: Build and test
run: rake -m && rake test run: rake -m && rake test
Windows-MinGW: Windows-MinGW:
...@@ -84,7 +84,7 @@ jobs: ...@@ -84,7 +84,7 @@ jobs:
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
run: ${{ env.CC }} --version run: ${{ env.CC }} --version
- name: Build and Test - name: Build and test
# If build and test are separated like `rake && rake test`, somehow # 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. # it will be fully built even at `rake test`, so it is not separated.
run: rake -E STDOUT.sync=true test run: rake -E STDOUT.sync=true test
...@@ -128,7 +128,7 @@ jobs: ...@@ -128,7 +128,7 @@ jobs:
run: ruby -v run: ruby -v
- name: Compiler version - name: Compiler version
run: ${{ env.CC }} --version run: ${{ env.CC }} --version
- name: Build and Test - name: Build and test
shell: cmd shell: cmd
run: | run: |
ruby /usr/bin/rake -E STDOUT.sync=true -m ruby /usr/bin/rake -E STDOUT.sync=true -m
...@@ -146,7 +146,7 @@ jobs: ...@@ -146,7 +146,7 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Ruby version - name: Ruby version
run: ruby -v run: ruby -v
- name: Build and Test - name: Build and test
shell: cmd shell: cmd
run: | run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" 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