Merge pull request #174 from ywk253100/230919_velero #151
Workflow file for this run
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
name: Main CI | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release-**' | |
tags: | |
- '*' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20.7' | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
# Fix issue of setup-gcloud | |
- run: | | |
sudo apt-get install python2.7 | |
export CLOUDSDK_PYTHON="/usr/bin/python2" | |
- uses: google-github-actions/setup-gcloud@v0 | |
with: | |
version: '285.0.0' | |
service_account_key: ${{ secrets.GCS_SA_KEY }} | |
export_default_credentials: true | |
- run: gcloud info | |
- name: Set up QEMU | |
id: qemu | |
uses: docker/setup-qemu-action@v1 | |
with: | |
platforms: all | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v1 | |
with: | |
version: latest | |
- name: Build | |
run: make local | |
- name: Test | |
run: make test | |
- name: Upload test coverage | |
uses: codecov/codecov-action@v2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage.out | |
verbose: true | |
# Use the JSON key in secret to login gcr.io | |
- uses: 'docker/login-action@v2' | |
with: | |
registry: 'gcr.io' # or REGION.docker.pkg.dev | |
username: '_json_key' | |
password: '${{ secrets.GCR_SA_KEY }}' | |
# Only try to publish the container image from the root repo; forks don't have permission to do so and will always get failures. | |
- name: Publish container image | |
if: github.repository == 'vmware-tanzu/velero-plugin-for-aws' | |
run: | | |
docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASSWORD }} | |
# Call `docker-push.sh` to push the velero-plugin-for-aws image to docker hub and gcr.io. | |
VERSION=$(./hack/docker-push.sh | grep 'VERSION:' | awk -F: '{print $2}' | xargs) | |
# Upload velero-plugin-for-aws image package to GCS | |
source hack/ci/build_util.sh | |
BIN=velero-plugin-for-aws | |
GCS_BUCKET=velero-builds | |
VELERO_PLUGIN_IMAGE=${BIN}-${VERSION} | |
VELERO_PLUGIN_IMAGE_FILE=${VELERO_PLUGIN_IMAGE}.tar.gz | |
VELERO_PLUGIN_IMAGE_BACKUP_FILE=${VELERO_PLUGIN_IMAGE}-'build.'${GITHUB_RUN_NUMBER}.tar.gz | |
cp ${VELERO_PLUGIN_IMAGE_FILE} ${VELERO_PLUGIN_IMAGE_BACKUP_FILE} | |
uploader ${VELERO_PLUGIN_IMAGE_FILE} ${GCS_BUCKET} | |
uploader ${VELERO_PLUGIN_IMAGE_BACKUP_FILE} ${GCS_BUCKET} |