mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
chore(build): improve matrix entries for workflows
This commit is contained in:
parent
07233dffcf
commit
ceb173e0e7
11
.github/workflows/pr.yml
vendored
11
.github/workflows/pr.yml
vendored
@ -4,28 +4,31 @@ on: [pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: ${{ matrix.config.name }}
|
||||
name: ${{ matrix.build.os_name }} (${{ matrix.build.compiler_name }})
|
||||
runs-on: ${{ matrix.config.os }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
config:
|
||||
- name: Ubuntu Latest (GCC)
|
||||
- os_name: Ubuntu Latest
|
||||
compiler_name: GCC
|
||||
os: ubuntu-latest
|
||||
build_type: Debug
|
||||
test_path: WhoaTest
|
||||
cc: gcc
|
||||
cxx: g++
|
||||
|
||||
- name: macOS Latest (Clang)
|
||||
- os_name: macOS Latest
|
||||
compiler_name: Clang
|
||||
os: macos-latest
|
||||
build_type: Debug
|
||||
test_path: WhoaTest
|
||||
cc: clang
|
||||
cxx: clang++
|
||||
|
||||
- name: Windows Latest (MSVC)
|
||||
- os_name: Windows Latest
|
||||
compiler_name: MSVC
|
||||
os: windows-latest
|
||||
build_type: Debug
|
||||
test_path: WhoaTest
|
||||
|
||||
11
.github/workflows/push.yml
vendored
11
.github/workflows/push.yml
vendored
@ -7,28 +7,31 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: ${{ matrix.config.name }}
|
||||
name: ${{ matrix.build.os_name }} (${{ matrix.build.compiler_name }})
|
||||
runs-on: ${{ matrix.config.os }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
config:
|
||||
- name: Ubuntu Latest (GCC)
|
||||
- os_name: Ubuntu Latest
|
||||
compiler_name: GCC
|
||||
os: ubuntu-latest
|
||||
build_type: Release
|
||||
test_path: WhoaTest
|
||||
cc: gcc
|
||||
cxx: g++
|
||||
|
||||
- name: macOS Latest (Clang)
|
||||
- os_name: macOS Latest
|
||||
compiler_name: Clang
|
||||
os: macos-latest
|
||||
build_type: Release
|
||||
test_path: WhoaTest
|
||||
cc: clang
|
||||
cxx: clang++
|
||||
|
||||
- name: Windows Latest (MSVC)
|
||||
- os_name: Windows Latest
|
||||
compiler_name: MSVC
|
||||
os: windows-latest
|
||||
build_type: Release
|
||||
test_path: WhoaTest
|
||||
|
||||
Loading…
Reference in New Issue
Block a user