-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into liren/destination-namespace-charset
- Loading branch information
Showing
751 changed files
with
20,364 additions
and
7,185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# Frontend code | ||
/airbyte-webapp/ @airbytehq/frontend | ||
/airbyte-webapp-e2e-tests/ @airbytehq/frontend | ||
/airbyte-webapp/ @airbytehq/frontend | ||
## Exclude the package(-lock).json from code ownership to prevent version bump PRs from triggering codeowners review | ||
/airbyte-webapp/package.json | ||
/airbyte-webapp/package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: "Cache Build Artifacts" | ||
description: "Cache Java, Javascript and Python build artifacts to reduce build time" | ||
inputs: | ||
cache-key: | ||
description: "Key to use for caching" | ||
required: true | ||
cache-python: | ||
description: "Whether to cache Python dependencies. Only relevant if building connector modules. true or false" | ||
default: "true" | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Pip Caching | ||
if: ${{ inputs.cache_python }} == 'true' | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.cache/pip | ||
key: ${{ inputs.cache-key }}-pip-${{ runner.os }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }} | ||
restore-keys: | | ||
${{ inputs.cache-key }}-pip-${{ runner.os }}- | ||
- name: Npm Caching | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.npm | ||
key: ${{ inputs.cache-key }}-npm-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ inputs.cache-key }}-npm-${{ runner.os }}- | ||
# this intentionally does not use restore-keys so we don't mess with gradle caching | ||
- name: Gradle and Python Caching | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
**/.venv | ||
key: ${{ inputs.cache-key }}-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
668e0fe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SonarQube Report
SonarQube report for Airbyte Connectors Destination Snowflake(#10793)
Measures
Detected Issues
Coverage (0.0%)
668e0fe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SonarQube Report
SonarQube report for Airbyte Connectors Destination Bigquery(#10793)
Measures
Detected Issues
Coverage (0.0%)