Skip to content

Commit

Permalink
chore: install airbyte-ci from local repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristoGrab committed Feb 4, 2025
1 parent f801241 commit 22d7759
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/connector-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,21 +153,27 @@ jobs:
POETRY_DYNAMIC_VERSIONING_BYPASS: "0.0.0"
run: |
cd airbyte
# Debug the make target
echo "Contents of tools.airbyte-ci-dev.install make target:"
grep -A 5 "tools.airbyte-ci-dev.install:" Makefile
make tools.airbyte-ci-dev.install
# Add debug output
echo "Checking airbyte-ci installation:"
which airbyte-ci || true
echo "Current PATH: $PATH"
# Try using pipx directly
pipx run airbyte-ci \
# Try to find where airbyte-ci was installed
echo "Looking for airbyte-ci:"
find ~/.local/bin -name airbyte-ci || true
find . -name airbyte-ci || true
# Try running with full path if found
~/.local/bin/airbyte-ci \
--ci-report-bucket-name=airbyte-ci-reports-multi \
connectors \
--name ${{matrix.connector}} \
--use-local-cdk \
test \
--fail-fast \
--skip-step qa_checks \
--skip-step connector_live_tests \
--skip-step connector_live_tests
- name: Evaluate Test
id: evaluate_output
Expand Down

0 comments on commit 22d7759

Please sign in to comment.