-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add branch preparation and release CI changes
Signed-off-by: Diwakar Sharma <[email protected]>
- Loading branch information
1 parent
8a7e84c
commit c404caa
Showing
4 changed files
with
577 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
name: Branch Preparation | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'release/**' | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+**' | ||
|
||
jobs: | ||
update_release_branch_after_release: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.ref_type == 'tag' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: cachix/install-nix-action@v22 | ||
- name: Pre-populate nix-shell | ||
run: | | ||
export NIX_PATH=nixpkgs=$(jq '.nixpkgs.url' nix/sources.json -r) | ||
echo "NIX_PATH=$NIX_PATH" >> $GITHUB_ENV | ||
nix-shell --pure --run "echo" ./shell.nix | ||
- name: Test the chart version updater script | ||
run: | | ||
nix-shell --pure --run "./scripts/test-update-chart-version.sh" ./shell.nix | ||
- name: Modify the chart version based on the tag | ||
run: | | ||
tag=${{ github.ref_name }} | ||
echo "BASE=$(nix-shell --pure --run "./scripts/update-chart-version.sh --tag $tag" ./shell.nix)" >> $GITHUB_ENV | ||
- name: Create Pull Request to release | ||
if: ${{ env.BASE }} | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
base: ${{ env.BASE }} | ||
commit-message: "chore(ci): update helm chart versions and/or git submodules" | ||
committer: GitHub <[email protected]> | ||
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | ||
title: "Prepare release branch after release ${{ github.ref_name }}" | ||
labels: | | ||
update-release-branch | ||
automated-pr | ||
draft: false | ||
signoff: true | ||
branch: "create-pull-request/patch-${{ env.BASE }}" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
update_develop_branch_on_release_branch_creation: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.ref_type == 'branch' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- run: | | ||
git checkout develop | ||
- uses: cachix/install-nix-action@v22 | ||
- name: Pre-populate nix-shell | ||
run: | | ||
export NIX_PATH=nixpkgs=$(jq '.nixpkgs.url' nix/sources.json -r) | ||
echo "NIX_PATH=$NIX_PATH" >> $GITHUB_ENV | ||
nix-shell --pure --run "echo" ./shell.nix | ||
- name: Test the chart version updater script | ||
run: | | ||
nix-shell --pure --run "./scripts/test-update-chart-version.sh" ./shell.nix | ||
- name: Modify the chart version based on the branch name for develop | ||
run: | | ||
branch_name=${{ github.ref_name }} | ||
nix-shell --pure --run "./scripts/update-chart-version.sh --branch $branch_name --type develop" ./shell.nix | ||
- name: Create Pull Request to develop | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
base: develop | ||
commit-message: "chore(ci): update helm chart versions and/or git submodules" | ||
committer: GitHub <[email protected]> | ||
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | ||
title: "Prepare develop branch on ${{ github.ref_name }} creation" | ||
labels: | | ||
update-develop-branch | ||
automated-pr | ||
draft: false | ||
signoff: true | ||
branch: "create-pull-request/patch-develop" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
prepare_release_branch_on_creation: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.ref_type == 'branch' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: cachix/install-nix-action@v22 | ||
- name: Pre-populate nix-shell | ||
run: | | ||
export NIX_PATH=nixpkgs=$(jq '.nixpkgs.url' nix/sources.json -r) | ||
echo "NIX_PATH=$NIX_PATH" >> $GITHUB_ENV | ||
nix-shell --pure --run "echo" ./shell.nix | ||
- name: Test the chart version updater script | ||
run: | | ||
nix-shell --pure --run "./scripts/test-update-chart-version.sh" ./shell.nix | ||
- name: Modify the chart version based on the branch name for release | ||
run: | | ||
branch_name=${{ github.ref_name }} | ||
nix-shell --pure --run "./scripts/update-chart-version.sh --branch $branch_name --type release" ./shell.nix | ||
- name: Create Pull Request to release | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
base: ${{ github.ref_name }} | ||
commit-message: "chore(ci): update helm chart versions and/or git submodules" | ||
committer: GitHub <[email protected]> | ||
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | ||
title: "Prepare ${{ github.ref_name }} branch" | ||
labels: | | ||
prepare-release-branch | ||
automated-pr | ||
draft: false | ||
signoff: true | ||
branch: "create-pull-request/patch-${{ github.ref_name }}" | ||
token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,119 @@ | ||
# Copyright 2020 The OpenEBS Authors. All rights reserved. | ||
# | ||
# 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 | ||
# | ||
# http://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. | ||
name: release | ||
name: Release Images and Charts | ||
|
||
on: | ||
release: | ||
types: | ||
- 'created' | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: cachix/install-nix-action@v22 | ||
- uses: rrbutani/[email protected] | ||
with: | ||
file: shell.nix | ||
|
||
- name: Check if the chart is publishable | ||
run: | | ||
TAG=${{ github.event.release.tag_name }} | ||
./scripts/update-chart-version.sh --tag $TAG --publish-release | ||
- name: Run chart-testing lint | ||
run: | | ||
ct lint --config ct.yaml | ||
unit-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Unit test | ||
run: make test | ||
|
||
- name: Upload Coverage Report | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
file: ./coverage.txt | ||
name: coverage-$(date +%s) | ||
flags: unittests | ||
|
||
bdd-tests: | ||
runs-on: ubuntu-latest | ||
needs: ["unit-tests"] | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
kubernetes: [v1.27.3] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Go 1.19 | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: 1.19.9 | ||
cache: false | ||
|
||
- name: Build images locally | ||
run: make lvm-driver-image || exit 1; | ||
|
||
- name: Setup Minikube-Kubernetes | ||
uses: medyagh/setup-minikube@latest | ||
with: | ||
cache: false | ||
minikube-version: 1.31.1 | ||
driver: none | ||
kubernetes-version: ${{ matrix.kubernetes }} | ||
cni: calico | ||
start-args: "--install-addons=false" | ||
|
||
- name: Setting environment variables | ||
run: | | ||
echo "KUBECONFIG=$HOME/.kube/config" >> $GITHUB_ENV | ||
echo "OPENEBS_NAMESPACE=openebs" >> $GITHUB_ENV | ||
- name: bootstrap | ||
run: make bootstrap | ||
|
||
- name: Running tests | ||
run: | | ||
make ci | ||
make sanity | ||
- name: Upload CI Test Coverage Report | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
file: ./tests/bdd_coverage.txt | ||
name: coverage-bdd_coverage-$(date +%s) | ||
flags: bddtests | ||
|
||
csi-driver: | ||
if: contains(github.ref, 'tags/v') | ||
runs-on: ubuntu-latest | ||
needs: ["lint", "bdd-tests"] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: cachix/install-nix-action@v22 | ||
- name: Pre-populate nix-shell | ||
run: | | ||
export NIX_PATH=nixpkgs=$(jq '.nixpkgs.url' nix/sources.json -r) | ||
echo "NIX_PATH=$NIX_PATH" >> $GITHUB_ENV | ||
nix-shell --pure --run "echo" ./shell.nix | ||
- name: Check if the chart is publishable | ||
run: | | ||
TAG=${{ github.event.release.tag_name }} | ||
nix-shell --pure --run "./scripts/update-chart-version.sh --tag $TAG --publish-release" ./shell.nix | ||
- name: Set Image Org | ||
# sets the default IMAGE_ORG to openebs | ||
run: | | ||
|
@@ -37,11 +125,11 @@ jobs: | |
run: | | ||
echo "DATE=$(date -u +'%Y-%m-%dT%H:%M:%S%Z')" >> $GITHUB_OUTPUT | ||
- name: Set Tag | ||
- name: Set IMAGE_TAG and BRANCH | ||
run: | | ||
TAG="${GITHUB_REF#refs/*/v}" | ||
echo "TAG=${TAG}" >> $GITHUB_ENV | ||
echo "RELEASE_TAG=${TAG}" >> $GITHUB_ENV | ||
BRANCH=${{ github.ref_name }} | ||
echo "BRANCH=$BRANCH" >> $GITHUB_ENV | ||
echo "IMAGE_TAG=$(awk -F': ' '/^version:/ {print $$2}' deploy/helm/charts/Chart.yaml)" >> $GITHUB_ENV | ||
- name: Docker meta | ||
id: docker_meta | ||
|
@@ -54,11 +142,12 @@ jobs: | |
ghcr.io/${{ env.IMAGE_ORG }}/lvm-driver | ||
tags: | | ||
type=semver,pattern={{version}} | ||
type=raw,value=${{ env.IMAGE_TAG }} | ||
- name: Print Tag info | ||
run: | | ||
echo "BRANCH: ${{ env.BRANCH }}" | ||
echo "${{ steps.docker_meta.outputs.tags }}" | ||
echo "RELEASE TAG: ${RELEASE_TAG}" | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
@@ -72,7 +161,7 @@ jobs: | |
version: v0.13.1 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
@@ -104,4 +193,27 @@ jobs: | |
DBUILD_DATE=${{ steps.date.outputs.DATE }} | ||
DBUILD_REPO_URL=https://github.com/openebs/lvm-localpv | ||
DBUILD_SITE_URL=https://openebs.io | ||
RELEASE_TAG=${{ env.RELEASE_TAG }} | ||
BRANCH=${{ env.BRANCH }} | ||
release-chart: | ||
runs-on: ubuntu-latest | ||
needs: ["csi-driver"] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: cachix/install-nix-action@v22 | ||
- name: Pre-populate nix-shell | ||
run: | | ||
export NIX_PATH=nixpkgs=$(jq '.nixpkgs.url' nix/sources.json -r) | ||
echo "NIX_PATH=$NIX_PATH" >> $GITHUB_ENV | ||
nix-shell --pure --run "echo" ./shell.nix | ||
- name: Check if the chart is publishable | ||
run: | | ||
TAG=${{ github.event.release.tag_name }} | ||
nix-shell --pure --run "./scripts/update-chart-version.sh --tag $TAG --publish-release" ./shell.nix | ||
- name: Publish lvm localpv develop or prerelease helm chart | ||
uses: stefanprodan/helm-gh-pages@master | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
charts_dir: ./deploy/helm |
Oops, something went wrong.