Skip to content

Commit

Permalink
run cloudevents integration only when cloudevents code changed (#285)
Browse files Browse the repository at this point in the history
Signed-off-by: Wei Liu <[email protected]>
  • Loading branch information
skeeey authored Sep 22, 2023
1 parent 9cb6321 commit 3063160
Show file tree
Hide file tree
Showing 2 changed files with 114 additions and 5 deletions.
107 changes: 107 additions & 0 deletions .github/workflows/cloudevents-integration-test.yml
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
12 changes: 7 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
name: Go

on:
push:
workflow_dispatch: {}
pull_request:
paths-ignore:
- 'cloudevents/**'
branches:
- main
- release-*
workflow_dispatch: {}
pull_request:
push:
paths-ignore:
- 'cloudevents/**'
branches:
- main
- release-*
Expand Down Expand Up @@ -101,5 +105,3 @@ jobs:
go-version: ${{ env.GO_VERSION }}
- name: api-integration
run: make test-api-integration
- name: cloudevents-integration
run: make test-cloudevents-integration

0 comments on commit 3063160

Please sign in to comment.