summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Hermaszewska <ellieh@nvidia.com>2024-12-13 06:01:18 +0800
committerGitHub <noreply@github.com>2024-12-12 14:01:18 -0800
commitb4e63d7bc44fc969d24202fc51a774378a489294 (patch)
treefa1074d9a003baa00e3aa17cac1b7545d6506f01
parent1fb79ac4f922c3f9c3ecf8f4533c12ec7bdeb37d (diff)
use Release over RelWithDebInfo for ci (#5846)
This will necessetate changing the "required tests" setting on the GitHub repo Co-authored-by: Yong He <yonghe@outlook.com>
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ce7c821fd..357b18137 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [linux, macos, windows]
- config: [debug, releaseWithDebugInfo]
+ config: [debug, release]
compiler: [gcc, clang, cl]
platform: [x86_64, aarch64, wasm]
exclude:
@@ -44,14 +44,14 @@ jobs:
# quick or full conditionally otherwise
- test-category: smoke
- { os: windows, test-category: quick }
- - { config: releaseWithDebugInfo, test-category: full }
+ - { config: release, test-category: full }
# default not full gpu tests
- full-gpu-tests: false
# The runners don't have a GPU by default except for the self-hosted ones
- has-gpu: false
# Self-hosted aarch64 build
- os: linux
- config: releaseWithDebugInfo
+ config: release
compiler: gcc
platform: aarch64
test-category: smoke
@@ -60,7 +60,7 @@ jobs:
has-gpu: true
# Self-hosted full gpu build
- os: windows
- config: releaseWithDebugInfo
+ config: release
compiler: cl
platform: x86_64
test-category: full