summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorKOBAYASHI Shuji <[email protected]>2020-12-16 21:56:32 +0900
committerKOBAYASHI Shuji <[email protected]>2020-12-16 21:56:32 +0900
commitd432688d9ff000fbe69e5ec8899fab340a7859a2 (patch)
tree8f2c3cc719523452906a0e636d42e0730b6c69ee /.github
parent1b7197622f770ce4ae3f3f2aaae1ea427ff3b902 (diff)
downloadmruby-d432688d9ff000fbe69e5ec8899fab340a7859a2.tar.gz
mruby-d432688d9ff000fbe69e5ec8899fab340a7859a2.zip
Rename build configuration files for CI
Currently, there are build configuration files for CI, `travis.rb` and `appveyor.rb`, but they are used for GCC/Clang and MSVC, not for Travis CI and Appveyor, respectively. Therefore, rename them to `gcc-clang.rb` and `msvc.rb`, respectively, and move them under `build_config/ci/` to clarify that they are for CI.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 811a11cf5..2e76a5eeb 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_CONFIG: travis
+ MRUBY_CONFIG: ci/gcc-clang
steps:
- uses: actions/checkout@v1
- name: apt
@@ -17,7 +17,7 @@ jobs:
Ubuntu-1804-gcc:
runs-on: ubuntu-18.04
env:
- MRUBY_CONFIG: travis
+ MRUBY_CONFIG: ci/gcc-clang
CC: gcc
CXX: g++
steps:
@@ -30,7 +30,7 @@ jobs:
Ubuntu-1804-clang:
runs-on: ubuntu-18.04
env:
- MRUBY_CONFIG: travis
+ MRUBY_CONFIG: ci/gcc-clang
CC: clang
CXX: clang++
steps:
@@ -43,7 +43,7 @@ jobs:
macOS:
runs-on: macos-latest
env:
- MRUBY_CONFIG: travis
+ MRUBY_CONFIG: ci/gcc-clang
steps:
- uses: actions/checkout@v1
- name: brew
@@ -54,7 +54,7 @@ jobs:
Windows-MinGW:
runs-on: windows-latest
env:
- MRUBY_CONFIG: travis
+ MRUBY_CONFIG: ci/gcc-clang
CFLAGS: -g -O1 -Wall -Wundef
steps:
- uses: actions/checkout@v1
@@ -66,7 +66,7 @@ jobs:
Windows-Cygwin:
runs-on: windows-latest
env:
- MRUBY_CONFIG: travis
+ MRUBY_CONFIG: ci/gcc-clang
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
- uses: actions/checkout@v1
@@ -92,7 +92,7 @@ jobs:
Windows-VC:
runs-on: windows-latest
env:
- MRUBY_CONFIG: appveyor
+ MRUBY_CONFIG: ci/msvc
# 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"