Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

connectors-ci: fix airbyte-ci test run #28907

Merged
merged 13 commits into from
Aug 1, 2023
Prev Previous commit
Next Next commit
install curl
alafanechere committed Aug 1, 2023
commit 30171e66a2c303c2ca9f021bfedd21af0901e12f
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ async def run_test(airbyte_ci_package_path: str):
dagger_client.container()
.from_("python:3.10-slim")
.with_exec(["apt-get", "update"])
.with_exec(["apt-get", "install", "-y", "bash", "git"])
.with_exec(["apt-get", "install", "-y", "bash", "git", "curl"])
.with_env_variable("VERSION", "24.0.2")
.with_exec(["sh", "-c", "curl -fsSL https://get.docker.com | sh"])
.with_exec(["pip", "install", "pipx"])