mirror of
https://github.com/thunderbrewhq/squall.git
synced 2026-02-03 16:39:08 +00:00
chore(build): use debug builds for PRs
This commit is contained in:
parent
d971058bc1
commit
2c7c444aad
1 changed files with 8 additions and 4 deletions
12
.github/workflows/pr.yml
vendored
12
.github/workflows/pr.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
- os_name: Ubuntu Latest
|
||||
compiler_name: GCC
|
||||
os: ubuntu-latest
|
||||
build_type: Release
|
||||
build_type: Debug
|
||||
test_path: StormTest
|
||||
cc: gcc
|
||||
cxx: g++
|
||||
|
|
@ -22,7 +22,7 @@ jobs:
|
|||
- os_name: macOS Latest
|
||||
compiler_name: Clang
|
||||
os: macos-latest
|
||||
build_type: Release
|
||||
build_type: Debug
|
||||
test_path: StormTest
|
||||
cc: clang
|
||||
cxx: clang++
|
||||
|
|
@ -30,8 +30,8 @@ jobs:
|
|||
- os_name: Windows Latest
|
||||
compiler_name: MSVC
|
||||
os: windows-latest
|
||||
build_type: Release
|
||||
test_path: Release/StormTest
|
||||
build_type: Debug
|
||||
test_path: Debug/StormTest
|
||||
cc: cl
|
||||
cxx: cl
|
||||
|
||||
|
|
@ -46,6 +46,10 @@ jobs:
|
|||
with:
|
||||
submodules: true
|
||||
|
||||
- name: Install Dependencies (Ubuntu)
|
||||
run: sudo apt install -y lcov
|
||||
if: matrix.build.os_name == 'Ubuntu Latest'
|
||||
|
||||
- name: Prepare
|
||||
run: mkdir build
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue