Add callback for poll(), closes #70 #387
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: Windows | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
- 'doc/**' | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
- 'doc/**' | |
jobs: | |
vs2022: | |
strategy: | |
fail-fast: false | |
matrix: | |
build_type: [Debug, Release] | |
runs-on: windows-latest | |
env: | |
TAOPQ_TEST_DATABASE: host=localhost dbname=mydatabase user=myuser password=mypassword | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
$pgService = Get-Service -Name postgresql* | |
Set-Service -InputObject $pgService -Status running -StartupType automatic | |
Start-Process -FilePath "$env:PGBIN\pg_isready" -Wait -PassThru | |
- run: | | |
& $env:PGBIN\psql --command="CREATE USER myuser PASSWORD 'mypassword'" --command="\du" | |
- run: | | |
& $env:PGBIN\createdb --owner=myuser mydatabase | |
$env:PGPASSWORD = 'mypassword' | |
& $env:PGBIN\psql --username=myuser --host=localhost --list mydatabase | |
- run: cmake -E make_directory build | |
- shell: bash | |
working-directory: build/ | |
run: cmake $GITHUB_WORKSPACE -G "Visual Studio 17 2022" -DPostgreSQL_ADDITIONAL_VERSIONS=14 | |
- working-directory: build/ | |
run: cmake --build . --config ${{ matrix.build_type }} | |
- working-directory: build/ | |
run: ctest -C ${{ matrix.build_type }} --output-on-failure | |
vs2022-clang: | |
strategy: | |
fail-fast: false | |
matrix: | |
build_type: [Debug, Release] | |
runs-on: windows-latest | |
env: | |
TAOPQ_TEST_DATABASE: host=localhost dbname=mydatabase user=myuser password=mypassword | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
$pgService = Get-Service -Name postgresql* | |
Set-Service -InputObject $pgService -Status running -StartupType automatic | |
Start-Process -FilePath "$env:PGBIN\pg_isready" -Wait -PassThru | |
- run: | | |
& $env:PGBIN\psql --command="CREATE USER myuser PASSWORD 'mypassword'" --command="\du" | |
- run: | | |
& $env:PGBIN\createdb --owner=myuser mydatabase | |
$env:PGPASSWORD = 'mypassword' | |
& $env:PGBIN\psql --username=myuser --host=localhost --list mydatabase | |
- run: cmake -E make_directory build | |
- shell: bash | |
working-directory: build/ | |
run: cmake $GITHUB_WORKSPACE -G "Visual Studio 17 2022" -T ClangCL -DPostgreSQL_ADDITIONAL_VERSIONS=14 | |
- working-directory: build/ | |
run: cmake --build . --config ${{ matrix.build_type }} | |
- working-directory: build/ | |
run: ctest -C ${{ matrix.build_type }} --output-on-failure | |
vs2019: | |
strategy: | |
fail-fast: false | |
matrix: | |
build_type: [Debug, Release] | |
runs-on: windows-2019 | |
env: | |
TAOPQ_TEST_DATABASE: host=localhost dbname=mydatabase user=myuser password=mypassword | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
$pgService = Get-Service -Name postgresql* | |
Set-Service -InputObject $pgService -Status running -StartupType automatic | |
Start-Process -FilePath "$env:PGBIN\pg_isready" -Wait -PassThru | |
- run: | | |
& $env:PGBIN\psql --command="CREATE USER myuser PASSWORD 'mypassword'" --command="\du" | |
- run: | | |
& $env:PGBIN\createdb --owner=myuser mydatabase | |
$env:PGPASSWORD = 'mypassword' | |
& $env:PGBIN\psql --username=myuser --host=localhost --list mydatabase | |
- run: cmake -E make_directory build | |
- shell: bash | |
working-directory: build/ | |
run: cmake $GITHUB_WORKSPACE -G "Visual Studio 16 2019" -DPostgreSQL_ADDITIONAL_VERSIONS=14 | |
- working-directory: build/ | |
run: cmake --build . --config ${{ matrix.build_type }} | |
- working-directory: build/ | |
run: ctest -C ${{ matrix.build_type }} --output-on-failure | |
vs2019-clang: | |
strategy: | |
fail-fast: false | |
matrix: | |
build_type: [Debug, Release] | |
runs-on: windows-2019 | |
env: | |
TAOPQ_TEST_DATABASE: host=localhost dbname=mydatabase user=myuser password=mypassword | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
$pgService = Get-Service -Name postgresql* | |
Set-Service -InputObject $pgService -Status running -StartupType automatic | |
Start-Process -FilePath "$env:PGBIN\pg_isready" -Wait -PassThru | |
- run: | | |
& $env:PGBIN\psql --command="CREATE USER myuser PASSWORD 'mypassword'" --command="\du" | |
- run: | | |
& $env:PGBIN\createdb --owner=myuser mydatabase | |
$env:PGPASSWORD = 'mypassword' | |
& $env:PGBIN\psql --username=myuser --host=localhost --list mydatabase | |
- run: cmake -E make_directory build | |
- shell: bash | |
working-directory: build/ | |
run: cmake $GITHUB_WORKSPACE -G "Visual Studio 16 2019" -T ClangCL -DPostgreSQL_ADDITIONAL_VERSIONS=14 | |
- working-directory: build/ | |
run: cmake --build . --config ${{ matrix.build_type }} | |
- working-directory: build/ | |
run: ctest -C ${{ matrix.build_type }} --output-on-failure |