Use environment variables for postgres and MySQL test credentials (#121) #509
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: windows-cxx20-vcpkg | |
| on: [push, pull_request] | |
| env: | |
| VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" | |
| jobs: | |
| windows-msvc: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - db: duckdb | |
| - db: postgres | |
| - db: sqlite | |
| - db: mysql | |
| name: "(windows-${{ matrix.db }})" | |
| concurrency: | |
| group: ci-${{ github.ref }}-windows-${{ matrix.db }} | |
| cancel-in-progress: true | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Export GitHub Actions cache environment variables | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
| core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
| - uses: ilammy/msvc-dev-cmd@v1 | |
| - uses: lukka/run-vcpkg@v11 | |
| - name: Compile | |
| if: matrix.db == 'duckdb' | |
| run: | | |
| cmake -S . -B build -DCMAKE_CXX_STANDARD=20 -DCMAKE_BUILD_TYPE=Release -DSQLGEN_BUILD_TESTS=ON -DSQLGEN_DUCKDB=ON -DSQLGEN_POSTGRES=OFF -DSQLGEN_SQLITE3=OFF | |
| cmake --build build --config Release -j4 | |
| - name: Compile | |
| if: matrix.db == 'postgres' | |
| run: | | |
| cmake -S . -B build -DCMAKE_CXX_STANDARD=20 -DCMAKE_BUILD_TYPE=Release -DSQLGEN_BUILD_TESTS=ON -DSQLGEN_SQLITE3=OFF -DSQLGEN_BUILD_DRY_TESTS_ONLY=ON -DBUILD_SHARED_LIBS=ON -DVCPKG_TARGET_TRIPLET=x64-windows-release | |
| cmake --build build --config Release -j4 | |
| - name: Compile | |
| if: matrix.db == 'sqlite' | |
| run: | | |
| cmake -S . -B build -DCMAKE_CXX_STANDARD=20 -DCMAKE_BUILD_TYPE=Release -DSQLGEN_BUILD_TESTS=ON -DSQLGEN_POSTGRES=OFF -DBUILD_SHARED_LIBS=ON -DVCPKG_TARGET_TRIPLET=x64-windows-release | |
| cmake --build build --config Release -j4 | |
| - name: Compile | |
| if: matrix.db == 'mysql' | |
| run: | | |
| cmake -S . -B build -DCMAKE_CXX_STANDARD=20 -DCMAKE_BUILD_TYPE=Release -DSQLGEN_BUILD_TESTS=ON -DSQLGEN_MYSQL=ON -DSQLGEN_POSTGRES=OFF -DSQLGEN_SQLITE3=OFF -DSQLGEN_BUILD_DRY_TESTS_ONLY=ON -DBUILD_SHARED_LIBS=ON -DVCPKG_TARGET_TRIPLET=x64-windows-release | |
| cmake --build build --config Release -j4 | |
| - name: Run tests | |
| run: | | |
| ctest --test-dir build --output-on-failure |