mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
8122750c58
updated the required templates and upgrade document for release 3.3 Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
33 lines
590 B
YAML
33 lines
590 B
YAML
---
|
|
# need for docker build
|
|
os: linux
|
|
dist: bionic
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- coreutils
|
|
- ruby
|
|
- socat
|
|
services:
|
|
- docker
|
|
|
|
language: go
|
|
branches:
|
|
only:
|
|
- release-v3.3
|
|
# Only run the deploy stage on push (not pull_request) events.
|
|
stages:
|
|
- name: deploy
|
|
if: type = push
|
|
|
|
jobs:
|
|
include:
|
|
- stage: deploy
|
|
name: push artifacts to repositories
|
|
install:
|
|
- export HELM_VERSION=$(source build.env ; echo ${HELM_VERSION})
|
|
- curl -L https://git.io/get_helm.sh
|
|
| bash -s -- -v "${HELM_VERSION}"
|
|
script: ./deploy.sh
|