mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-02 00:32:45 +03:00
chore(build): clean up workflow names
This commit is contained in:
parent
fc1d3310f5
commit
ffc27717ab
24
.github/workflows/pr.yml
vendored
24
.github/workflows/pr.yml
vendored
@ -4,34 +4,34 @@ on: [pull_request]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: ${{ matrix.build.os_name }} (${{ matrix.build.compiler_name }})
|
name: ${{ matrix.build.system_name }} / ${{ matrix.build.build_type }} / ${{ matrix.build.compiler_name }}
|
||||||
runs-on: ${{ matrix.build.os }}
|
runs-on: ${{ matrix.build.os }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
build:
|
build:
|
||||||
- os_name: Ubuntu Latest
|
- system_name: Linux
|
||||||
compiler_name: GCC
|
|
||||||
os: ubuntu-latest
|
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
|
compiler_name: GCC
|
||||||
test_path: WhoaTest
|
test_path: WhoaTest
|
||||||
|
os: ubuntu-latest
|
||||||
cc: gcc
|
cc: gcc
|
||||||
cxx: g++
|
cxx: g++
|
||||||
|
|
||||||
- os_name: macOS Latest
|
- system_name: macOS
|
||||||
compiler_name: Clang
|
|
||||||
os: macos-latest
|
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
|
compiler_name: Clang
|
||||||
test_path: WhoaTest
|
test_path: WhoaTest
|
||||||
|
os: macos-latest
|
||||||
cc: clang
|
cc: clang
|
||||||
cxx: clang++
|
cxx: clang++
|
||||||
|
|
||||||
- os_name: Windows Latest
|
- system_name: Windows
|
||||||
compiler_name: MSVC
|
|
||||||
os: windows-latest
|
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
|
compiler_name: MSVC
|
||||||
test_path: WhoaTest
|
test_path: WhoaTest
|
||||||
|
os: windows-latest
|
||||||
cc: cl
|
cc: cl
|
||||||
cxx: cl
|
cxx: cl
|
||||||
|
|
||||||
@ -40,9 +40,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- name: Install Dependencies (Ubuntu)
|
- name: Install Dependencies (${{ matrix.build.os }})
|
||||||
run: sudo apt install -y lcov
|
run: sudo apt install -y lcov
|
||||||
if: matrix.build.os_name == 'Ubuntu Latest'
|
if: matrix.build.os == 'ubuntu-latest'
|
||||||
|
|
||||||
- name: Download Fixtures
|
- name: Download Fixtures
|
||||||
run: aws s3 cp --endpoint-url ${{ env.AWS_ENDPOINT_URL }} s3://reliquaryhq-whoa/fixture.tgz test/fixture/
|
run: aws s3 cp --endpoint-url ${{ env.AWS_ENDPOINT_URL }} s3://reliquaryhq-whoa/fixture.tgz test/fixture/
|
||||||
|
|||||||
20
.github/workflows/push.yml
vendored
20
.github/workflows/push.yml
vendored
@ -7,34 +7,34 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: ${{ matrix.build.os_name }} (${{ matrix.build.compiler_name }})
|
name: ${{ matrix.build.system_name }} / ${{ matrix.build.build_type }} / ${{ matrix.build.compiler_name }}
|
||||||
runs-on: ${{ matrix.build.os }}
|
runs-on: ${{ matrix.build.os }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
build:
|
build:
|
||||||
- os_name: Ubuntu Latest
|
- system_name: Linux
|
||||||
compiler_name: GCC
|
|
||||||
os: ubuntu-latest
|
|
||||||
build_type: Release
|
build_type: Release
|
||||||
|
compiler_name: GCC
|
||||||
test_path: WhoaTest
|
test_path: WhoaTest
|
||||||
|
os: ubuntu-latest
|
||||||
cc: gcc
|
cc: gcc
|
||||||
cxx: g++
|
cxx: g++
|
||||||
|
|
||||||
- os_name: macOS Latest
|
- system_name: macOS
|
||||||
compiler_name: Clang
|
|
||||||
os: macos-latest
|
|
||||||
build_type: Release
|
build_type: Release
|
||||||
|
compiler_name: Clang
|
||||||
test_path: WhoaTest
|
test_path: WhoaTest
|
||||||
|
os: macos-latest
|
||||||
cc: clang
|
cc: clang
|
||||||
cxx: clang++
|
cxx: clang++
|
||||||
|
|
||||||
- os_name: Windows Latest
|
- system_name: Windows
|
||||||
compiler_name: MSVC
|
|
||||||
os: windows-latest
|
|
||||||
build_type: Release
|
build_type: Release
|
||||||
|
compiler_name: MSVC
|
||||||
test_path: WhoaTest
|
test_path: WhoaTest
|
||||||
|
os: windows-latest
|
||||||
cc: cl
|
cc: cl
|
||||||
cxx: cl
|
cxx: cl
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user