forked from buildkite/bash-parallel-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.sh
executable file
·17 lines (14 loc) · 987 Bytes
/
script.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
set -eo pipefail
echo -e "\033[33m
______ _ ______ _ _ _ _____ _ _
| ___ \ | | | ___ \ | | | | | | ___| | | | |
| |_/ / __ _ ___| |__ | |_/ /_ _ _ __ __ _| | | ___| | | |____ ____ _ _ __ ___ _ __ | | ___| |
| ___ \/ _\` / __| '_ \ | __/ _\` | '__/ _\` | | |/ _ \ | | __\ \/ / _\` | '_ \` _ \| '_ \| |/ _ \ |
| |_/ / (_| \__ \ | | | | | | (_| | | | (_| | | | __/ | | |___> < (_| | | | | | | |_) | | __/_|
\____/ \__,_|___/_| |_| \_| \__,_|_| \__,_|_|_|\___|_| \____/_/\_\__,_|_| |_| |_| .__/|_|\___(_)
| |
|_|\033[0m"
echo -e "Yay! It all worked! 👍\n"
echo "BUILDKITE_PARALLEL_JOB: $BUILDKITE_PARALLEL_JOB"
echo "BUILDKITE_PARALLEL_JOB_COUNT: $BUILDKITE_PARALLEL_JOB_COUNT"