diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-10-29 10:42:56 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-10-29 10:42:56 +0900 |
| commit | 76eafa46082e43b33b107e845ebbfaa6ebae3155 (patch) | |
| tree | ff07848865734b6246a82fb039b7fe7ed6685fd1 /.github | |
| parent | 78d185efb9ee62ae38b3f97c53372ae3a44fef51 (diff) | |
| parent | 81c21088196fd92d08c253efc2feb8dbead88acf (diff) | |
| download | mruby-76eafa46082e43b33b107e845ebbfaa6ebae3155.tar.gz mruby-76eafa46082e43b33b107e845ebbfaa6ebae3155.zip | |
Merge pull request #5098 from shuujii/revert-MRUBY_TARGET-mechanism
Revert `MRUBY_TARGET` mechanism; ref #5096
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 95f7c40d8..56fbe86c7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ jobs: Ubuntu-1604: runs-on: ubuntu-16.04 env: - MRUBY_TARGET: travis + MRUBY_CONFIG: travis steps: - uses: actions/checkout@v1 - name: apt @@ -17,7 +17,7 @@ jobs: Ubuntu-1804-gcc: runs-on: ubuntu-18.04 env: - MRUBY_TARGET: travis + MRUBY_CONFIG: travis CC: gcc CXX: g++ steps: @@ -30,7 +30,7 @@ jobs: Ubuntu-1804-clang: runs-on: ubuntu-18.04 env: - MRUBY_TARGET: travis + MRUBY_CONFIG: travis CC: clang CXX: clang++ steps: @@ -43,7 +43,7 @@ jobs: macOS: runs-on: macos-latest env: - MRUBY_TARGET: travis + MRUBY_CONFIG: travis steps: - uses: actions/checkout@v1 - name: brew @@ -54,7 +54,7 @@ jobs: Windows-MinGW: runs-on: windows-latest env: - MRUBY_TARGET: travis + MRUBY_CONFIG: travis CFLAGS: -g -O1 -Wall -Wundef steps: - uses: actions/checkout@v1 @@ -66,7 +66,7 @@ jobs: Windows-Cygwin: runs-on: windows-latest env: - MRUBY_TARGET: travis + MRUBY_CONFIG: travis steps: - uses: actions/checkout@v1 - uses: actions/cache@v1 @@ -91,7 +91,7 @@ jobs: Windows-VC: runs-on: windows-latest env: - MRUBY_TARGET: appveyor + MRUBY_CONFIG: appveyor # TODO(take-cheeze): Re-enable /O2 CFLAGS: "/c /nologo /W3 /we4013 /Zi /MD /D_CRT_SECURE_NO_WARNINGS" CXXFLAGS: "/c /nologo /W3 /Zi /MD /EHs /D_CRT_SECURE_NO_WARNINGS" |
