mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
chore(build): add windows-latest to build matrix
This commit is contained in:
parent
385c46807b
commit
1426dfed88
1 changed files with 10 additions and 1 deletions
11
.github/workflows/push.yml
vendored
11
.github/workflows/push.yml
vendored
|
|
@ -17,15 +17,24 @@ jobs:
|
||||||
- name: Ubuntu Latest (GCC)
|
- name: Ubuntu Latest (GCC)
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
build_type: Release
|
build_type: Release
|
||||||
|
test_path: TempestTest
|
||||||
cc: gcc
|
cc: gcc
|
||||||
cxx: g++
|
cxx: g++
|
||||||
|
|
||||||
- name: macOS Latest (Clang)
|
- name: macOS Latest (Clang)
|
||||||
os: macos-latest
|
os: macos-latest
|
||||||
build_type: Release
|
build_type: Release
|
||||||
|
test_path: TempestTest
|
||||||
cc: clang
|
cc: clang
|
||||||
cxx: clang++
|
cxx: clang++
|
||||||
|
|
||||||
|
- name: Windows Latest (MSVC)
|
||||||
|
os: windows-latest
|
||||||
|
build_type: Release
|
||||||
|
test_path: Release/TempestTest
|
||||||
|
cc: cl
|
||||||
|
cxx: cl
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
|
|
@ -41,4 +50,4 @@ jobs:
|
||||||
run: cmake --build build --config ${{ matrix.config.build_type }}
|
run: cmake --build build --config ${{ matrix.config.build_type }}
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: ./build/test/TempestTest
|
run: ./build/test/${{ matrix.config.test_path }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue