-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run cloudevents integration only when cloudevents code changed (#285)
Signed-off-by: Wei Liu <[email protected]>
- Loading branch information
Showing
2 changed files
with
114 additions
and
5 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,107 @@ | ||
name: CloudEventsIntegrationTest | ||
|
||
on: | ||
workflow_dispatch: {} | ||
pull_request: | ||
paths: | ||
- 'cloudevents/**' | ||
branches: | ||
- main | ||
- release-* | ||
push: | ||
paths: | ||
- 'cloudevents/**' | ||
branches: | ||
- main | ||
- release-* | ||
|
||
env: | ||
# Common versions | ||
GO_VERSION: '1.19' | ||
GO_REQUIRED_MIN_VERSION: '' | ||
defaults: | ||
run: | ||
working-directory: go/src/open-cluster-management.io/api | ||
|
||
jobs: | ||
verify: | ||
name: verify | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/api | ||
- name: install Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: verify | ||
run: make verify | ||
env: | ||
GOPATH: '/home/runner/work/api/api/go' | ||
|
||
verify-deps: | ||
name: verify-deps | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/api | ||
- name: install Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: verify-deps | ||
run: make verify-deps | ||
|
||
build: | ||
name: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/api | ||
- name: install Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: build | ||
run: make build | ||
|
||
unit: | ||
name: unit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/api | ||
- name: install Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: unit | ||
run: make test | ||
|
||
integration: | ||
name: integration | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
path: go/src/open-cluster-management.io/api | ||
- name: install Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: cloudevents-integration | ||
run: make test-cloudevents-integration |
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