Add ASAN and Valgrind integration for CI test suite #48
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: Build and Test | |
| on: | |
| push: | |
| # Run on all branches, but not on tags (release.yml handles tags) | |
| branches: | |
| - '**' | |
| tags-ignore: | |
| - '**' | |
| pull_request: | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-and-test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| # ── Windows x64 native ────────────────────────────────────────────── | |
| - os: windows-2022 | |
| artifact-name: windows-x64-binaries | |
| firebird-version: '5.0.3' | |
| - os: windows-2022 | |
| firebird-branch: master | |
| # ── Windows x86 native (WoW64) ────────────────────────────────────── | |
| - os: windows-2022 | |
| artifact-name: windows-x86-binaries | |
| arch: Win32 | |
| firebird-version: '5.0.3' | |
| - os: windows-2022 | |
| arch: Win32 | |
| firebird-branch: master | |
| # ── Windows ARM64 native ───────────────────────────────────────────── | |
| # Official Firebird releases have no win-arm64 binaries; snapshots do. | |
| - os: windows-11-arm | |
| artifact-name: windows-arm64-binaries | |
| firebird-branch: master | |
| # ── Linux x64 native ───────────────────────────────────────────────── | |
| - os: ubuntu-22.04 | |
| artifact-name: linux-x64-binaries | |
| firebird-version: '5.0.3' | |
| - os: ubuntu-22.04 | |
| firebird-branch: master | |
| # ── Linux ARM64 native ────────────────────────────────────────────── | |
| - os: ubuntu-22.04-arm | |
| artifact-name: linux-arm64-binaries | |
| firebird-version: '5.0.3' | |
| - os: ubuntu-22.04-arm | |
| firebird-branch: master | |
| # ── Linux x64 sanitizers (Debug, Firebird 5.0.3) ───────────────────── | |
| - os: ubuntu-22.04 | |
| sanitizer: Asan | |
| firebird-version: '5.0.3' | |
| - os: ubuntu-22.04 | |
| sanitizer: Valgrind | |
| firebird-version: '5.0.3' | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 # Full history for git-tag-based versioning | |
| - name: Install prerequisites | |
| shell: pwsh | |
| run: ./install-prerequisites.ps1 | |
| - name: Install unixODBC (Linux) | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install -y unixodbc unixodbc-dev | |
| - name: Install Valgrind | |
| if: matrix.sanitizer == 'Valgrind' | |
| run: sudo apt-get install -y valgrind | |
| - name: Build, install and test | |
| shell: pwsh | |
| env: | |
| API_GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| FIREBIRD_VERSION: ${{ matrix.firebird-version }} | |
| FIREBIRD_BRANCH: ${{ matrix.firebird-branch }} | |
| run: | | |
| $archArgs = @{} | |
| if ('${{ matrix.arch }}') { $archArgs['Architecture'] = '${{ matrix.arch }}' } | |
| $sanitizerArgs = @{} | |
| if ('${{ matrix.sanitizer }}') { $sanitizerArgs['Sanitizer'] = '${{ matrix.sanitizer }}' } | |
| $config = if ('${{ matrix.sanitizer }}') { 'Debug' } else { 'Release' } | |
| Invoke-Build test -Configuration $config @archArgs @sanitizerArgs -File ./firebird-odbc-driver.build.ps1 | |
| - name: Upload artifacts (Windows) | |
| if: runner.os == 'Windows' && matrix.artifact-name | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: ${{ matrix.artifact-name }} | |
| path: | | |
| build/Release/FirebirdODBC.dll | |
| build/Release/FirebirdODBC.lib | |
| build/Release/FirebirdODBC.pdb | |
| - name: Upload artifacts (Linux) | |
| if: runner.os == 'Linux' && matrix.artifact-name | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: ${{ matrix.artifact-name }} | |
| path: build/libOdbcFb.so |