SNOW-987122 Upgrade JDBC to 3.14.5 and Catch new exception type for r… #1870
Workflow file for this run
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
name: Snowpipe Java SDK | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: '**' | |
jobs: | |
build: | |
name: Build & Test - JDK ${{ matrix.java }}, Cloud ${{ matrix.snowflake_cloud }} | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast | |
matrix: | |
java: [ 8 ] | |
snowflake_cloud: [ 'AWS', 'AZURE', 'GCP' ] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Java ${{ matrix.java }} | |
uses: actions/setup-java@v2 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
cache: maven | |
- name: Decrypt profile.json for Cloud ${{ matrix.snowflake_cloud }} | |
env: | |
DECRYPTION_PASSPHRASE: ${{ secrets.PROFILE_JSON_DECRYPT_PASSPHRASE }} | |
run: | | |
./scripts/decrypt_secret.sh ${{ matrix.snowflake_cloud }} | |
- name: Unit & Integration Test against Cloud ${{ matrix.snowflake_cloud }} | |
env: | |
JACOCO_COVERAGE: true | |
WHITESOURCE_API_KEY: ${{ secrets.WHITESOURCE_API_KEY }} | |
continue-on-error: false | |
run: | | |
./scripts/run_gh_actions.sh | |
- name: Code Coverage | |
uses: codecov/codecov-action@v1 | |
build-windows: | |
name: Build & Test - Windows, JDK ${{ matrix.java }}, Cloud ${{ matrix.snowflake_cloud }} | |
runs-on: windows-2022 | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ 8 ] | |
snowflake_cloud: [ 'AWS', 'AZURE', 'GCP' ] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Java ${{ matrix.java }} | |
uses: actions/setup-java@v2 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
cache: maven | |
- name: Decrypt profile.json for Cloud ${{ matrix.snowflake_cloud }} on Windows Powershell | |
env: | |
DECRYPTION_PASSPHRASE: ${{ secrets.PROFILE_JSON_DECRYPT_PASSPHRASE }} | |
shell: pwsh | |
run: | | |
./scripts/decrypt_secret_windows.ps1 -SnowflakeDeployment '${{ matrix.snowflake_cloud }}' | |
- name: Unit & Integration Test (Windows) | |
continue-on-error: false | |
run: mvn -DghActionsIT verify --batch-mode | |
build-e2e-jar-test: | |
name: E2E JAR Test - ${{ matrix.java }}, Cloud ${{ matrix.snowflake_cloud }} | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ 8 ] | |
snowflake_cloud: [ 'AWS', 'AZURE', 'GCP' ] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Java ${{ matrix.java }} | |
uses: actions/setup-java@v2 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
cache: maven | |
- name: Decrypt profile.json for Cloud ${{ matrix.snowflake_cloud }} | |
env: | |
DECRYPTION_PASSPHRASE: ${{ secrets.PROFILE_JSON_DECRYPT_PASSPHRASE }} | |
run: ./scripts/decrypt_secret.sh ${{ matrix.snowflake_cloud }} | |
- name: Run E2E JAR Test | |
run: ./e2e-jar-test/run_e2e_jar_test.sh |