1
0
mirror of synced 2025-12-19 18:14:56 -05:00

airbyte-ci,gradle: replace airbyte-docker with airbyte-ci (#30743)

This commit is contained in:
Marius Posta
2023-10-04 08:38:17 -07:00
committed by GitHub
parent 5d6597e5b6
commit f8edc18039
127 changed files with 353 additions and 2601 deletions

View File

@@ -19,7 +19,7 @@ else
export SUB_BUILD="CONNECTORS_BASE"
# avoid schema conflicts when multiple tests for normalization are run concurrently
export RANDOM_TEST_SCHEMA="true"
./gradlew --no-daemon --scan airbyteDocker
./gradlew --no-daemon --scan assemble
elif [[ "$connector" == *"bases"* ]]; then
connector_name=$(echo $connector | cut -d / -f 2)
selected_integration_test=$(echo "$all_integration_tests" | grep "^$connector_name$" || echo "")

View File

@@ -35,7 +35,7 @@ else
export SUB_BUILD="CONNECTORS_BASE"
# avoid schema conflicts when multiple tests for normalization are run concurrently
export RANDOM_TEST_SCHEMA="true"
./gradlew --no-daemon --scan airbyteDocker
./gradlew --no-daemon --scan assemble
elif [[ "$connector" == *"bases"* ]]; then
connector_name=$(echo $connector | cut -d / -f 2)
selected_performance_test=$(echo "$all_performance_tests" | grep "^$connector_name$" || echo "")

View File

@@ -1,3 +1,3 @@
plugins {
id 'airbyte-docker'
id 'airbyte-docker-legacy'
}

View File

@@ -71,7 +71,7 @@ cmd_build() {
if test "$path" == "airbyte-integrations/bases/base-normalization"; then
export RANDOM_TEST_SCHEMA="true"
./gradlew --no-daemon --scan :airbyte-integrations:bases:base-normalization:airbyteDocker
./gradlew --no-daemon --scan :airbyte-integrations:bases:base-normalization:assemble
fi
./gradlew --no-daemon --scan "$(_to_gradle_path "$path" integrationTest)"