Bump com.google.guava:guava from 33.3.0-jre to 33.3.1-jre #714
Workflow file for this run
This file contains hidden or 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
| name: ClickHouse Kafka Connect Tests CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| client: ["V1", "V2"] | |
| clickhouse: ["23.7", "24.3", "latest", "cloud"] | |
| name: ClickHouse ${{ matrix.clickhouse }} Client version ${{ matrix.client }} tests | |
| steps: | |
| - name: Check for Cloud Credentials | |
| id: check-cloud-credentials | |
| run: | | |
| if [[ "${{ matrix.clickhouse }}" == "cloud" && (-z "${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_HOST_SMT }}" || -z "${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_PASSWORD_SMT }}") ]]; then | |
| echo "SKIP_STEP=true" >> $GITHUB_ENV | |
| else | |
| echo "SKIP_STEP=false" >> $GITHUB_ENV | |
| fi | |
| shell: bash | |
| - uses: actions/checkout@v3 | |
| if: env.SKIP_STEP != 'true' | |
| - name: Set up JDK 17 | |
| if: env.SKIP_STEP != 'true' | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '17' | |
| distribution: 'adopt' | |
| architecture: x64 | |
| - name: Setup and execute Gradle 'test' task | |
| if: env.SKIP_STEP != 'true' | |
| uses: gradle/gradle-build-action@v2 | |
| env: | |
| CLICKHOUSE_VERSION: ${{ matrix.clickhouse }} | |
| CLICKHOUSE_CLOUD_HOST: ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_HOST_SMT }} | |
| CLICKHOUSE_CLOUD_PASSWORD: ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_PASSWORD_SMT }} | |
| CLIENT_VERSION: ${{ matrix.client }} | |
| with: | |
| arguments: test |