From 5e0089773fb600b409e4554c36690e461273fa13 Mon Sep 17 00:00:00 2001 From: evantahler Date: Fri, 8 Apr 2022 16:25:03 -0700 Subject: [PATCH] Remove M1-specific docs - Airbyte works on M1 Macs now --- airbyte-server/Dockerfile | 1 + docs/contributing-to-airbyte/developing-locally.md | 4 ---- docs/deploying-airbyte/local-deployment.md | 8 -------- .../rebuild_acceptance_test_connector_images_locally.sh | 1 - 4 files changed, 1 insertion(+), 13 deletions(-) diff --git a/airbyte-server/Dockerfile b/airbyte-server/Dockerfile index 3fefc03f30ea7..601f627fc1590 100644 --- a/airbyte-server/Dockerfile +++ b/airbyte-server/Dockerfile @@ -7,6 +7,7 @@ ENV APPLICATION airbyte-server WORKDIR /app +# This is automatically unzipped by Docker ADD bin/${APPLICATION}-0.35.65-alpha.tar /app # wait for upstream dependencies to become available before starting server diff --git a/docs/contributing-to-airbyte/developing-locally.md b/docs/contributing-to-airbyte/developing-locally.md index 947bce8842f00..2b968515cd8a4 100644 --- a/docs/contributing-to-airbyte/developing-locally.md +++ b/docs/contributing-to-airbyte/developing-locally.md @@ -26,10 +26,6 @@ To start contributing: ## Build with `gradle` -{% hint style="info" %} -If you're using Mac M1 \(Apple Silicon\) machines, you may run into some problems (Temporal failing during runs, and some connectors not working). See the [GitHub issue](https://github.com/airbytehq/airbyte/issues/2017) for more information. -{% endhint %} - To compile and build just the platform \(not all the connectors\): ```bash diff --git a/docs/deploying-airbyte/local-deployment.md b/docs/deploying-airbyte/local-deployment.md index c6d49cccd4938..7e81156042751 100644 --- a/docs/deploying-airbyte/local-deployment.md +++ b/docs/deploying-airbyte/local-deployment.md @@ -15,14 +15,6 @@ cd airbyte docker-compose up ``` -{% hint style="info" %} - -If you're using Mac M1 \(Apple Silicon\) machines, you must [build and run Airbyte locally in dev mode](../contributing-to-airbyte/developing-locally.md). -Some users using Macs with an M1 chip are facing problems running Airbyte even with a locally built version of the platform. -You can subscribe to [Issue \#2017](https://github.com/airbytehq/airbyte/issues/2017) and get updates on M1-related issues. - -{% endhint %} - * In your browser, just visit [http://localhost:8000](http://localhost:8000) * Start moving some data! diff --git a/tools/bin/rebuild_acceptance_test_connector_images_locally.sh b/tools/bin/rebuild_acceptance_test_connector_images_locally.sh index 6d3981caeceed..0f80ce69d383c 100755 --- a/tools/bin/rebuild_acceptance_test_connector_images_locally.sh +++ b/tools/bin/rebuild_acceptance_test_connector_images_locally.sh @@ -1,6 +1,5 @@ #!/usr/bin/env bash -# We frequently encounter issues running emulated amd64-built connectors on ARM/M1. # When running acceptance tests, this often manifests as a conenctor sometimes getting stuck for no discernable reason. # This script allows building all of the connector images used in the acceptance tests. # We will need to update this file if the versions used for source-e2e-test and destination-e2e-test change before we start publishing ARM images.