Automated Velero version update 1.15.0 #18021
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: build-test | |
on: [ pull_request ] | |
jobs: | |
validate-go-mod: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' | |
- name: setup env | |
run: | | |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV | |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
shell: bash | |
- uses: actions/checkout@v4 | |
- run: go mod tidy -compat=1.17 | |
build-kurl-utils: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' | |
- name: setup env | |
run: | | |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV | |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
shell: bash | |
- uses: actions/checkout@v4 | |
- run: make -C kurl_util test build | |
build-bin-kurl: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' | |
- name: setup env | |
run: | | |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV | |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
shell: bash | |
- uses: actions/checkout@v4 | |
- run: make test build/bin/kurl | |
test-shell: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make docker-test-shell | |
build-test-success: | |
runs-on: ubuntu-latest | |
if: ${{ always() }} | |
needs: | |
- validate-go-mod | |
- build-kurl-utils | |
- build-bin-kurl | |
- test-shell | |
steps: | |
- run: | | |
if [ "${{ needs.validate-go-mod.result }}" = "failure" ] \ | |
|| [ "${{ needs.build-kurl-utils.result }}" = "failure" ] \ | |
|| [ "${{ needs.build-bin-kurl.result }}" = "failure" ] \ | |
|| [ "${{ needs.test-shell.result }}" = "failure" ] | |
then | |
echo "build test failure" | |
exit 1 | |
fi | |
echo "build test success" |