mirror of
https://github.com/zama-ai/concrete.git
synced 2026-04-17 03:00:54 -04:00
11 lines
278 B
Bash
Executable File
11 lines
278 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
grep setup-instance -Rl .github/workflows/ | xargs grep -L teardown-instance &> missing-teardown.txt
|
|
|
|
if [ -s missing-teardown.txt ]; then
|
|
echo "There are missing teardown-instance jobs in following jobs:"
|
|
echo
|
|
cat missing-teardown.txt
|
|
exit 1
|
|
fi
|