Connector build error

Wiile running connector build receiving error:

Execution failed for task ':octavia-cli:installLocalReqs'.	
> Python call failed: .venv/bin/python -m pip install .[dev,tests]

SUB_BUILD=PLATFORM ./gradlew clean build was succesful. Full report at https://scans.gradle.com/s/5fssxedklxcke/console-log?anchor=961&page=1

My build file is:

plugins {
    id 'application'
    id 'airbyte-docker'
    id 'airbyte-integration-test-java'
}

application {
    mainClass = 'io.airbyte.integrations.destination.impala.ImpalaDestination'
// enable when profiling
    applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0']
}

dependencies {

    implementation files('libs/ImpalaJDBC.jar')
    implementation files(project(':airbyte-integrations:bases:base-java').airbyteDocker.outputs)
    implementation project(':airbyte-db:db-lib')
    implementation project(':airbyte-config:config-models')
    implementation project(':airbyte-protocol:protocol-models')
    implementation project(':airbyte-integrations:bases:base-java')
    implementation project(':airbyte-integrations:connectors:destination-jdbc')
    implementation project(':airbyte-integrations:connectors:destination-s3')


    implementation 'com.zaxxer:HikariCP:5.0.1'
    implementation 'com.github.alexmojaki:s3-stream-upload:2.2.2'

    //this is a configuration to make mockito work with final classes
    testImplementation 'org.mockito:mockito-inline:2.13.0'

    integrationTestJavaImplementation 'org.apache.commons:commons-lang3:3.11'
    integrationTestJavaImplementation project(':airbyte-integrations:bases:standard-destination-test')
    integrationTestJavaImplementation project(':airbyte-integrations:connectors:destination-impala')
}

Hey could you help me with the command you used to run?

Sure harshith. Its ./gradlew :airbyte-integrations:connectors:destination-impala:clean build . My destination connector name is destination-impala

Also if you check the attached scan logs , you will see there are builds trying to happen for other unrelated connectors like
:airbyte-integrations:connectors:destination-amazon-sqs:checkPython
:airbyte-integrations:connectors:destination-firebolt:checkPython

If i clean up docker containers,restart it and then perform the clean build of both airbyte base and connector it succeeds. But the problem eventually returns in couple of hours. Is this something you have noticed in the past. I am using intellij to code and build. Am i corrupting the gradle builds somehow.

Hey you help me with more information like which OS you are using? When I ran it, it was working good. :cry:

Mac os monterey on macbook pro m1

Hey could you try ./gradlew :octavia-cli:installLocalReqs and share the response?