forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
21 lines (13 loc) · 903 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
##@ Makefile
##@ Define the default airbyte-ci version
AIRBYTE_CI_VERSION ?= latest
tools.airbyte-ci.install: ## Install airbyte-ci
@python airbyte-ci/connectors/pipelines/pipelines/external_scripts/airbyte_ci_install.py ${AIRBYTE_CI_VERSION}
tools.airbyte-ci-dev.install: ## Install the development version of airbyte-ci
@python airbyte-ci/connectors/pipelines/pipelines/external_scripts/airbyte_ci_dev_install.py
tools.airbyte-ci.check: # Check if airbyte-ci is installed correctly
@./airbyte-ci/connectors/pipelines/pipelines/external_scripts/airbyte_ci_check.sh
tools.airbyte-ci.clean: ## Clean airbyte-ci installations
@./airbyte-ci/connectors/pipelines/pipelines/external_scripts/airbyte_ci_clean.sh
tools.install: tools.airbyte-ci.install tools.airbyte-ci.check
.PHONY: tools.install tools.airbyte-ci.install tools.airbyte-ci-dev.install tools.airbyte-ci.check tools.airbyte-ci.clean