File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 20
20
with :
21
21
artifact-name : " codegate-image"
22
22
integration-tests :
23
+ if : github.event.pull_request.head.repo.full_name == 'stacklok/codegate'
23
24
name : Integration Tests
24
25
needs : [ci, image-build] # We need the image available in order to run the integration tests
25
26
uses : ./.github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change 13
13
ci :
14
14
name : Build, Test & Lint
15
15
uses : ./.github/workflows/ci.yml
16
+ image-build :
17
+ name : OCI Image - Build
18
+ needs : [ci] # No need to build the image if the CI fails
19
+ uses : ./.github/workflows/image-build.yml
20
+ with :
21
+ artifact-name : " codegate-image"
22
+ integration-tests :
23
+ name : Integration Tests
24
+ needs : [ci, image-build] # We need the image available in order to run the integration tests
25
+ uses : ./.github/workflows/integration-tests.yml
26
+ with :
27
+ artifact-name : " codegate-image"
28
+ secrets :
29
+ copilot-key : ${{ secrets.INTEGRATION_TESTS_COPILOT_KEY }}
16
30
openapi :
17
31
name : Generate the OpenAPI docs
18
32
needs : [ci]
19
- uses : ./.github/workflows/openapi.yml
33
+ uses : ./.github/workflows/openapi.yml
You can’t perform that action at this time.
0 commit comments