mirror of
https://github.com/danog/jit_bugs.git
synced 2024-11-26 20:15:13 +01:00
10 lines
166 B
Bash
Executable File
10 lines
166 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
docker build . -t asan_tests
|
|
|
|
composer update
|
|
|
|
for f in bugs/*sh; do
|
|
echo "!!! About to run $f !!!"
|
|
$f || echo "!!! Failed to run $f !!!"
|
|
done |