forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "[airbyte-ci] implement pre/post build hooks" (airbytehq#31280)
- Loading branch information
1 parent
72360cd
commit 48dd82d
Showing
10 changed files
with
38 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 0 additions & 88 deletions
88
airbyte-ci/connectors/pipelines/pipelines/builds/build_customization.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "pipelines" | ||
version = "1.7.0" | ||
version = "1.6.0" | ||
description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines" | ||
authors = ["Airbyte <[email protected]>"] | ||
|
||
|
35 changes: 0 additions & 35 deletions
35
airbyte-ci/connectors/pipelines/tests/test_builds/dummy_build_customization.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
airbyte-integrations/connectors/source-zendesk-chat/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM python:3.9-slim | ||
|
||
# Bash is installed for more convenient debugging. | ||
RUN apt-get update && apt-get install -y bash && rm -rf /var/lib/apt/lists/* | ||
|
||
ENV CODE_PATH="source_zendesk_chat" | ||
ENV AIRBYTE_IMPL_MODULE="source_zendesk_chat" | ||
ENV AIRBYTE_IMPL_PATH="SourceZendeskChat" | ||
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main_dev.py" | ||
|
||
WORKDIR /airbyte/integration_code | ||
COPY $CODE_PATH ./$CODE_PATH | ||
COPY main_dev.py ./ | ||
COPY setup.py ./ | ||
RUN pip install . | ||
|
||
ENTRYPOINT ["python", "/airbyte/integration_code/main_dev.py"] | ||
|
||
LABEL io.airbyte.version=0.1.14 | ||
LABEL io.airbyte.name=airbyte/source-zendesk-chat |
23 changes: 0 additions & 23 deletions
23
airbyte-integrations/connectors/source-zendesk-chat/build_customization.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters