mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Update GitHub Actions.
- Remove Ubuntu-16.04
- Add Ubuntu-20.04 {gcc,clang}
This commit is contained in:
+28
-14
@@ -3,20 +3,6 @@ name: Build & Test
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
Ubuntu-1604:
|
||||
runs-on: ubuntu-16.04
|
||||
env:
|
||||
MRUBY_CONFIG: ci/gcc-clang
|
||||
CC: gcc
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Ruby version
|
||||
run: ruby -v
|
||||
- name: Compiler version
|
||||
run: ${{ env.CC }} --version
|
||||
- name: Build and test
|
||||
run: rake -m test:build && rake test:run
|
||||
|
||||
Ubuntu-1804-gcc:
|
||||
runs-on: ubuntu-18.04
|
||||
env:
|
||||
@@ -45,6 +31,34 @@ jobs:
|
||||
- name: Build and test
|
||||
run: rake -m test:build && rake test:run
|
||||
|
||||
Ubuntu-2004-gcc:
|
||||
runs-on: ubuntu-20.04
|
||||
env:
|
||||
MRUBY_CONFIG: ci/gcc-clang
|
||||
CC: gcc
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Ruby version
|
||||
run: ruby -v
|
||||
- name: Compiler version
|
||||
run: ${{ env.CC }} --version
|
||||
- name: Build and test
|
||||
run: rake -m test:build && rake test:run
|
||||
|
||||
Ubuntu-2004-clang:
|
||||
runs-on: ubuntu-20.04
|
||||
env:
|
||||
MRUBY_CONFIG: ci/gcc-clang
|
||||
CC: clang
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Ruby version
|
||||
run: ruby -v
|
||||
- name: Compiler version
|
||||
run: ${{ env.CC }} --version
|
||||
- name: Build and test
|
||||
run: rake -m test:build && rake test:run
|
||||
|
||||
macOS:
|
||||
runs-on: macos-latest
|
||||
env:
|
||||
|
||||
Reference in New Issue
Block a user