Skip to content

Commit

Permalink
Move examples target to shared build in ci;
Browse files Browse the repository at this point in the history
This will catch linker visibility issues with shared builds
  • Loading branch information
atreiber94 committed Sep 6, 2024
1 parent ee41b6b commit f0ecad0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/ci_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ def __exit__(self, exc_type, exc_value, exc_tb):
print("::endgroup::")

def build_targets(target, target_os):
if target in ['shared', 'minimized', 'bsi', 'nist']:
if target in ['shared', 'minimized', 'bsi', 'nist', 'examples']:
yield 'shared'
elif target in ['static', 'examples', 'fuzzers', 'cross-arm32-baremetal', 'emscripten']:
elif target in ['static', 'fuzzers', 'cross-arm32-baremetal', 'emscripten']:
yield 'static'
elif target_os in ['windows']:
yield 'shared'
Expand Down

0 comments on commit f0ecad0

Please sign in to comment.