mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
1c8e1e20e4
Bumps [actions/cache](https://github.com/actions/cache) from v2 to v2.1.4. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...26968a09c0ea4f3e233fdddbafd1166051a095f6) Signed-off-by: dependabot[bot] <support@github.com>
148 lines
4.1 KiB
YAML
148 lines
4.1 KiB
YAML
name: Build & Test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
Ubuntu-1804-gcc:
|
|
runs-on: ubuntu-18.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-clang:
|
|
runs-on: ubuntu-18.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
|
|
|
|
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:
|
|
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
|
|
|
|
Windows-MinGW:
|
|
runs-on: windows-latest
|
|
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
|
|
|
|
Windows-Cygwin:
|
|
runs-on: windows-latest
|
|
env:
|
|
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
|
|
MRUBY_CONFIG: ci/gcc-clang
|
|
CC: gcc
|
|
installer-path: '%TMP%\cygwin-setup.exe'
|
|
cygwin-root: C:\cygwin
|
|
package-dir: C:\cygwin-package
|
|
cache-version: v1
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/cache@v2.1.4
|
|
with:
|
|
path: ${{ env.package-dir }}
|
|
key: ${{ runner.os }}-cygwin-${{ env.cache-version }}
|
|
- name: Download Cygwin installer
|
|
shell: cmd
|
|
run: >
|
|
bitsadmin /transfer download /priority foreground
|
|
https://cygwin.com/setup-x86_64.exe ${{ env.installer-path }}
|
|
- name: Install Cygwin
|
|
shell: cmd
|
|
run: >
|
|
${{ env.installer-path }}
|
|
--quiet-mode --no-shortcuts --no-startmenu --no-desktop --no-admin
|
|
--only-site --site http://mirrors.kernel.org/sourceware/cygwin/
|
|
--root ${{ env.cygwin-root }}
|
|
--local-package-dir ${{ env.package-dir }}
|
|
--packages gcc-core,gcc-g++,ruby
|
|
- name: Set PATH for Cygwin
|
|
run: |
|
|
echo '::set-env name=PATH::${{ env.cygwin-root }}\bin;${{ env.cygwin-root }}\usr\bin'
|
|
- name: Ruby version
|
|
shell: cmd
|
|
run: ruby -v
|
|
- name: Compiler version
|
|
run: ${{ env.CC }} --version
|
|
- name: Build and test
|
|
shell: cmd
|
|
run: ruby /usr/bin/rake -m test:build && ruby /usr/bin/rake test:run
|
|
- name: Set PATH for cache archiving (tar)
|
|
# set Windows path so that Cygwin tar is not used for cache archiving
|
|
run: echo '::set-env name=PATH::C:\windows\System32'
|
|
|
|
Windows-VC:
|
|
runs-on: windows-latest
|
|
env:
|
|
MRUBY_CONFIG: ci/msvc
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Ruby version
|
|
run: ruby -v
|
|
- name: Build and test
|
|
shell: cmd
|
|
run: |
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
|
rake -m test:build && rake test:run
|