-
-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Split valgrind debug and release jobs
- Loading branch information
Showing
5 changed files
with
42 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eux -o pipefail | ||
|
||
find bin/x86_64-pc-linux-gnu -name 'roc-test-*' |\ | ||
while read tst | ||
do | ||
python3 scripts/scons_helpers/timeout-run.py 3000 \ | ||
valgrind \ | ||
--max-stackframe=10475520 \ | ||
--error-exitcode=1 --exit-on-first-error=yes \ | ||
${tst} | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euxo pipefail | ||
|
||
scons -Q \ | ||
--enable-debug \ | ||
--enable-werror \ | ||
--enable-tests \ | ||
--enable-examples \ | ||
--compiler=gcc \ | ||
--build-3rdparty=all | ||
|
||
"$( dirname "$0" )"/run-tests-in-valgrind.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euxo pipefail | ||
|
||
scons -Q \ | ||
--enable-werror \ | ||
--enable-tests \ | ||
--enable-examples \ | ||
--compiler=gcc \ | ||
--build-3rdparty=all | ||
|
||
"$( dirname "$0" )"/run-tests-in-valgrind.sh |
This file was deleted.
Oops, something went wrong.