Skip to content

Commit

Permalink
airbyte-ci: don't require extra permissions or --is-ci flag to uplo…
Browse files Browse the repository at this point in the history
…ad reports to GCS bucket (airbytehq#48824)
  • Loading branch information
aaronsteers authored Dec 5, 2024
1 parent 69da3a1 commit 7a45e94
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions airbyte-ci/connectors/pipelines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -850,6 +850,7 @@ airbyte-ci connectors --language=low-code migrate-to-manifest-only

| Version | PR | Description |
| ------- | ---------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
| 4.43.1 | [#48824](https://github.com/airbytehq/airbyte/pull/48824) | Allow uploading CI reports to GCS with fewer permissions set. |
| 4.43.0 | [#36545](https://github.com/airbytehq/airbyte/pull/36545) | Switch to `airbyte` user when available in Python base image. |
| 4.42.2 | [#48404](https://github.com/airbytehq/airbyte/pull/48404) | Include `advanced_auth` in spec migration for manifest-only pipeline |
| 4.42.1 | [#47316](https://github.com/airbytehq/airbyte/pull/47316) | Connector testing: skip incremental acceptance test when the connector is not released. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def dagger_cloud_url(self) -> Optional[str]:

@property
def remote_storage_enabled(self) -> bool:
return self.is_ci and bool(self.ci_report_bucket) and bool(self.ci_gcp_credentials)
return bool(self.ci_report_bucket) and bool(self.ci_gcp_credentials)

def _should_send_status_check(self) -> bool:
should_send = self.is_pr or any(
Expand Down
4 changes: 2 additions & 2 deletions airbyte-ci/connectors/pipelines/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion airbyte-ci/connectors/pipelines/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "pipelines"
version = "4.43.0"
version = "4.43.1"
description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
authors = ["Airbyte <[email protected]>"]

Expand Down

0 comments on commit 7a45e94

Please sign in to comment.