summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-06-05 11:15:39 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-10-12 16:21:06 +0900
commit4684864f04a8615a455c15490a53a97e2ca676d2 (patch)
treeafe299820706d9224c3d99f6ec1164b50c580e88 /.github
parentdd8c178a739c980642a5747d655ae4a283f31615 (diff)
downloadmruby-4684864f04a8615a455c15490a53a97e2ca676d2.tar.gz
mruby-4684864f04a8615a455c15490a53a97e2ca676d2.zip
Specify new `MRUBY_TARGET` instead of `MRUBY_CONFIG`.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml25
1 files changed, 17 insertions, 8 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 256394af7..15ea84ff1 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -15,6 +15,11 @@ jobs:
run: rake -m
- name: test
run: rake test
+ run: sudo apt install ruby gperf
+ - name: build and test
+ run: rake -m -j4 all test
+ env:
+ MRUBY_TARGET: travis
Ubuntu-1804-gcc:
runs-on: ubuntu-18.04
@@ -26,10 +31,12 @@ jobs:
- uses: actions/checkout@v1
- name: apt
run: sudo apt install ruby gperf gcc g++
- - name: build
- run: rake -m
- - name: test
- run: rake test
+ - name: build and test
+ run: rake -m -j4 all test
+ env:
+ MRUBY_TARGET: travis
+ CC: gcc
+ CXX: g++
Ubuntu-1804-clang:
runs-on: ubuntu-18.04
@@ -41,10 +48,12 @@ jobs:
- uses: actions/checkout@v1
- name: apt
run: sudo apt install ruby gperf
- - name: build
- run: rake -m
- - name: test
- run: rake test
+ - name: build and test
+ run: rake -m -j4 all test
+ env:
+ MRUBY_TARGET: travis
+ CC: clang
+ CXX: clang++
macOS:
runs-on: macos-latest