* Move ci_connector_ops
* Move ci_credentials
* Move tools/ci_common_utils
* Rename tools to airbyte-ci
* Move to ci
* Convert ci_credentials
* Convert ci_common_utls
* Convert ci_connector_ops
* Get pipelines running
* Move pipelines to own poetry project
* Update readme
* Delete
* Add ci_code_validator
* Use pipx to install gha deps
* Fix'
* Ensure every thing is running
* Automated Commit - Formatting Changes
* Gitignore miss
* Add pipx installer
* Get local pipx dependencies
* Fix paths
* Install pipx
* ceremonial source-faker change
* Add installation step for ci_code_validator
* Add comment
* remove ci_code_validator
* Address code review comments
* add pipx install to acceptance-test-docker.sh
* Run formater
* Revert "ceremonial source-faker change"
This reverts commit 26884cd0db.
* gitignore lecacy pipeline report path
* update poetry.lock
* skip upload if logs do not exist
---------
Co-authored-by: bnchrch <bnchrch@users.noreply.github.com>
Co-authored-by: alafanechere <augustin.lafanechere@gmail.com>
101 lines
1.5 KiB
Plaintext
101 lines
1.5 KiB
Plaintext
.gradle
|
|
.idea
|
|
*.iml
|
|
*.swp
|
|
build
|
|
out
|
|
.DS_Store
|
|
.dockerversions
|
|
.classpath
|
|
.project
|
|
.settings
|
|
.vscode
|
|
**/gmon.out
|
|
static_checker_reports/
|
|
|
|
# Logs
|
|
acceptance_tests_logs/
|
|
airbyte_ci_logs/
|
|
|
|
# Secrets
|
|
secrets
|
|
updated_configurations
|
|
!airbyte-integrations/connector-templates/**/secrets
|
|
|
|
# Test logs
|
|
acceptance_tests_logs
|
|
|
|
# Python
|
|
*.egg-info
|
|
__pycache__
|
|
.eggs
|
|
.venv
|
|
.mypy_cache
|
|
.ipynb_checkpoints
|
|
.pytest_
|
|
|
|
# Python unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
cover/
|
|
|
|
# dbt
|
|
profiles.yml
|
|
|
|
# Terraform
|
|
.terraform/
|
|
crash.log
|
|
*.tfstate
|
|
*.tfstate.backup
|
|
*.lock.hcl
|
|
|
|
# Airflow Demo
|
|
resources/examples/airflow/logs/*
|
|
!resources/examples/airflow/logs/.gitkeep
|
|
|
|
# Summary.md keeps getting added and we just don't like it
|
|
docs/SUMMARY.md
|
|
|
|
# Files generated by unit tests
|
|
**/specs_secrets_mask.yaml
|
|
|
|
# Files generated when downloading connector registry
|
|
airbyte-config-oss/**/seed/oss_registry.json
|
|
airbyte-config-oss/**/seed/oss_catalog.json
|
|
|
|
# Output Files generated by scripts
|
|
lowcode_connector_names.txt
|
|
num_lowcode_connectors.csv
|
|
|
|
# Helm charts .tgz dependencies
|
|
charts/**/charts
|
|
|
|
# Snyk
|
|
.dccache
|
|
|
|
# Datadog
|
|
dd-java-agent.jar
|
|
|
|
# Files needed to run airbyte-platform that are downloaded on-the-fly via run-ab-platform.sh
|
|
/docker-compose.yaml
|
|
/docker-compose.debug.yaml
|
|
/.env
|
|
/.env.dev
|
|
/flags.yml
|
|
/temporal/dynamicconfig/development.yaml
|
|
|
|
# Ignore generated credentials from google-github-actions/auth
|
|
gha-creds-*.json
|
|
|
|
# Legacy pipeline reports path
|
|
tools/ci_connector_ops/pipeline_reports/ |