VZ-11307: Build Rancher 2.7.8 from source #1
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: Verify generated code changes | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- 'release/*' | |
env: | |
MAIN_BRANCH: origin/master | |
GOARCH: amd64 | |
CGO_ENABLED: 0 | |
SETUP_GO_VERSION: '1.19.*' | |
jobs: | |
check-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.SETUP_GO_VERSION }} | |
- | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- | |
name: Verify go.mod status | |
run: ./.github/scripts/check-for-go-mod-changes.sh | |
- | |
name: Install controller-gen | |
run: go install sigs.k8s.io/controller-tools/cmd/[email protected] | |
- | |
name: Verify auto-generated changes | |
run: ./.github/scripts/check-for-auto-generated-changes.sh |