mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 08:46:48 +00:00
Extend the health endpoint and add gateway version information Resolves: #733 Signed-off-by: Edward Wilde <ewilde@gmail.com>
10 lines
181 B
Bash
Executable File
10 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -s "$TRAVIS_TAG" ] ; then
|
|
echo "This build will be published under the tag: ${TRAVIS_TAG}"
|
|
fi
|
|
|
|
(cd gateway && ./build.sh)
|
|
(cd watchdog && ./build.sh)
|