Skip to content

Commit

Permalink
[CI] Swap build mode of gcc and clang (#4747)
Browse files Browse the repository at this point in the history
GCC+debug consumes too much memory. This swaps gcc and clang build mode.

CI: https://github.com/llvm/circt/actions/runs/4306635035 

Close #4740
  • Loading branch information
uenoku authored Mar 2, 2023
1 parent 8829a39 commit f340cda
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/buildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,14 +163,14 @@ jobs:
# gcc + debug + assert + shared
- cc: clang
cxx: clang++
mode: release
assert: OFF
shared: OFF
- cc: gcc
cxx: g++
mode: debug
assert: ON
shared: ON
- cc: gcc
cxx: g++
mode: release
assert: OFF
shared: OFF

steps:
- name: Configure Environment
Expand Down

0 comments on commit f340cda

Please sign in to comment.