feat: adfs authentication support #1431
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: Community Integration Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.jpg' | |
- '**/README.txt' | |
- '**/LICENSE.txt' | |
- 'docs/**' | |
- 'ISSUE_TEMPLATE/**' | |
- '**/remove-old-artifacts.yml' | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
community-tests: | |
name: Dockerized Community Tests | |
runs-on: ubuntu-latest | |
env: | |
CMAKE_GENERATOR: Unix Makefiles | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Install build dependencies | |
run: sudo apt-get update && sudo apt-get install libcurl4 && sudo apt-get install libcurl4-openssl-dev | |
- name: Build and install AWS SDK C++ | |
working-directory: ./scripts | |
if: steps.cache-dynamic-aws-sdk.outputs.cache-hit != 'true' | |
run: | | |
./build_aws_sdk_unix.sh $BUILD_TYPE | |
- name: 'Set up JDK 8' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: 8 | |
- name: 'Run Community Tests' | |
working-directory: ${{ github.workspace }}/testframework | |
run: | | |
./gradlew --no-parallel --no-daemon test-community --info | |
env: | |
TEST_DSN: awsmysqlodbca | |
TEST_USERNAME: root | |
TEST_PASSWORD: root | |
DRIVER_PATH: ${{ github.workspace }} |