This change orchestrates function builds. Environments (in v2) define a builder image, just like they do a runtime image. The builder image contains a build script that's invoked with source and deployment paths (as env vars). The buildermgr watches for environments with build images defined, and creates build deployments and services. Functions can define source and deployment. Buildermgr watches for functions with source code (and build status == pending) and invokes the environment's builder when appropriate. It captures logs from the build and sets the build status (success/failure) and build lots into the PackageStatus.
30 lines
658 B
Bash
Executable File
30 lines
658 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
if [ ! -f ${HOME}/.kube/config ]
|
|
then
|
|
echo "Skipping end to end tests, no cluster credentials"
|
|
exit 0
|
|
fi
|
|
|
|
source $(dirname $0)/test_utils.sh
|
|
|
|
IMAGE=gcr.io/fission-ci/fission-bundle
|
|
FETCHER_IMAGE=gcr.io/fission-ci/fetcher
|
|
PYTHON_RUNTIME_IMAGE=gcr.io/fission-ci/python-env
|
|
PYTHON_BUILDER_IMAGE=gcr.io/fission-ci/python-env-builder
|
|
TAG=test
|
|
|
|
build_and_push_fission_bundle $IMAGE:$TAG
|
|
|
|
build_and_push_fetcher $FETCHER_IMAGE:$TAG
|
|
|
|
build_and_push_python_env_runtime $PYTHON_RUNTIME_IMAGE:$TAG
|
|
|
|
build_and_push_python_env_builder $PYTHON_BUILDER_IMAGE:$TAG
|
|
|
|
build_fission_cli
|
|
|
|
install_and_test $IMAGE $TAG $FETCHER_IMAGE $TAG
|