Skip to content

Commit 5509ac3

Browse files
Marius Postajatinyadav-cc
Marius Posta
authored andcommitted
airbyte-ci: remove reference to buildConnectorImage (airbytehq#35364)
1 parent ead2766 commit 5509ac3

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

airbyte-ci/connectors/pipelines/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,7 @@ E.G.: running Poe tasks on the modified internal packages of the current branch:
640640

641641
| Version | PR | Description |
642642
| ------- | ---------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
643+
| 4.2.2 | [#35364](https://github.com/airbytehq/airbyte/pull/35364) | Fix connector tests following gradle changes in #35307. |
643644
| 4.2.1 | [#35204](https://github.com/airbytehq/airbyte/pull/35204) | Run `poetry check` before `poetry install` on poetry package install. |
644645
| 4.2.0 | [#35103](https://github.com/airbytehq/airbyte/pull/35103) | Java 21 support. |
645646
| 4.1.4 | [#35039](https://github.com/airbytehq/airbyte/pull/35039) | Fix bug which prevented gradle test reports from being added. |

airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/test/steps/java_connectors.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,11 @@ class IntegrationTests(GradleTask):
4343
@property
4444
def default_params(self) -> STEP_PARAMS:
4545
return super().default_params | {
46-
"-x": ["buildConnectorImage", "assemble"], # Exclude the buildConnectorImage and assemble tasks
46+
# Exclude the assemble task to avoid a circular dependency on airbyte-ci.
47+
# The integrationTestJava gradle task depends on assemble, which in turns
48+
# depends on buildConnectorImage to build the connector's docker image.
49+
# At this point, the docker image has already been built.
50+
"-x": ["assemble"],
4751
}
4852

4953
async def _load_normalization_image(self, normalization_tar_file: File) -> None:

airbyte-ci/connectors/pipelines/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "pipelines"
7-
version = "4.2.1"
7+
version = "4.2.2"
88
description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
99
authors = ["Airbyte <[email protected]>"]
1010

0 commit comments

Comments
 (0)