Skip to content

Commit

Permalink
Update CI script so it compiles in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
loganek committed Jan 10, 2023
1 parent 5961702 commit a637299
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,13 @@ jobs:
shell: bash
run: make -j4 THREAD_MODEL=posix

- name: Build libc + threads in debug mode
# There are features like stack boundary exposure that
# only compile in debug mode (i.e. when NDEBUG is not defined).
if: matrix.clang_version != '10.0.0'
shell: bash
run: make -j4 THREAD_MODEL=posix EXTRA_CFLAGS=

# Disable the headerstest job for now, while WASI transitions from the
# witx snapshots to wit proposals, and we have a few manual edits to the
# generated header to make life easier for folks.
Expand Down

0 comments on commit a637299

Please sign in to comment.