48 lines
1.5 KiB
Bash
Executable File
48 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# Copyright 2016-2021 the original author or authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
set -euo pipefail
|
|
|
|
readonly FLY_TARGET="spring-cloud-connectors"
|
|
readonly GITHUB_REPO="https://github.com/spring-cloud/spring-cloud-connectors"
|
|
|
|
set_pipeline() {
|
|
local pipeline_name pipeline_definition branch ci_image_tag
|
|
pipeline_name="${1:?pipeline name must be provided}"
|
|
pipeline_definition="${2:?pipeline definition file must be provided}"
|
|
branch="${3:?branch must be provided}"
|
|
ci_image_tag="${4:-$branch}"
|
|
|
|
echo "Setting $pipeline_name pipeline..."
|
|
fly --target "$FLY_TARGET" set-pipeline \
|
|
--pipeline "$pipeline_name" \
|
|
--config "$pipeline_definition" \
|
|
--load-vars-from config-concourse.yml \
|
|
--var "github-repo=$GITHUB_REPO" \
|
|
--var "branch=$branch" \
|
|
--var "ci-image-tag=$ci_image_tag"
|
|
}
|
|
|
|
set_pipelines() {
|
|
fly -t "$FLY_TARGET" sync
|
|
|
|
set_pipeline spring-cloud-connectors-2.0.x pipeline.yml main spring-cloud-connectors-ci
|
|
}
|
|
|
|
set_pipelines
|