Skip to content

Commit 4588a3e

Browse files
authored
Run the integration tests on main (#679)
Signed-off-by: Radoslav Dimitrov <[email protected]>
1 parent 84c8a6e commit 4588a3e

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/run-on-pr.yml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
with:
2121
artifact-name: "codegate-image"
2222
integration-tests:
23+
if: github.event.pull_request.head.repo.full_name == 'stacklok/codegate'
2324
name: Integration Tests
2425
needs: [ci, image-build] # We need the image available in order to run the integration tests
2526
uses: ./.github/workflows/integration-tests.yml

.github/workflows/run-on-push.yml

+15-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,21 @@ jobs:
1313
ci:
1414
name: Build, Test & Lint
1515
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 }}
1630
openapi:
1731
name: Generate the OpenAPI docs
1832
needs: [ci]
19-
uses: ./.github/workflows/openapi.yml
33+
uses: ./.github/workflows/openapi.yml

0 commit comments

Comments
 (0)