-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add eco-goinfra compatibility check
- Loading branch information
1 parent
7e5ef4b
commit acc157a
Showing
1 changed file
with
48 additions
and
0 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,48 @@ | ||
name: eco-goinfra integration | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- main | ||
- 'release-\d.\d\d' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
env: | ||
SHELL: /bin/bash | ||
ECO_GOINFRA_PATH: goinfra | ||
ECO_GOINFRA_REPO: openshift-kni/eco-goinfra | ||
|
||
steps: | ||
- name: Set up Go 1.22 | ||
if: ${{ !contains(github.event.*.labels.*.name, 'ignore-dep-check') }} | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.22.3 | ||
|
||
- name: Check out the eco-goinfra code | ||
if: ${{ !contains(github.event.*.labels.*.name, 'ignore-dep-check') }} | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check out the eco-goinfra code | ||
if: ${{ !contains(github.event.*.labels.*.name, 'ignore-dep-check') }} | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ env.ECO_GOINFRA_REPO }} | ||
# check out the branch name that is targeted by the PR | ||
ref: ${{ github.base_ref }} | ||
path: ${{ env.ECO_GOINFRA_PATH }} | ||
|
||
# Update the go.mod file in eco-gotests to include the current eco-goinfra code | ||
- name: Update go.mod in eco-gotests | ||
if: ${{ !contains(github.event.*.labels.*.name, 'ignore-dep-check') }} | ||
run: | | ||
go mod edit -replace github.com/openshift-kni/eco-goinfra=${{ github.workspace }}/${{ env.ECO_GOINFRA_PATH }} | ||
go mod tidy | ||
go mod vendor | ||
- name: eco-goinfra go vet | ||
if: ${{ !contains(github.event.*.labels.*.name, 'ignore-dep-check') }} | ||
run: make vet |