From 5cfb3b89b3600c10c55c9d938f8e21d02ea96aff Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Wed, 2 Nov 2022 12:07:54 +0000 Subject: [PATCH] Try running Sytest with both SQLites --- .github/workflows/dendrite.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dendrite.yml b/.github/workflows/dendrite.yml index a8271b675..a75f37d07 100644 --- a/.github/workflows/dendrite.yml +++ b/.github/workflows/dendrite.yml @@ -269,11 +269,18 @@ jobs: fail-fast: false matrix: include: - - label: SQLite + - label: SQLite (native) - - label: SQLite, full HTTP APIs + - label: SQLite (Cgo) + cgo: 1 + + - label: SQLite (native), full HTTP APIs api: full-http + - label: SQLite (Cgo), full HTTP APIs + api: full-http + cgo: 1 + - label: PostgreSQL postgres: postgres @@ -288,6 +295,7 @@ jobs: POSTGRES: ${{ matrix.postgres && 1}} API: ${{ matrix.api && 1 }} SYTEST_BRANCH: ${{ github.head_ref }} + CGO_ENABLED: ${{ matrix.cgo && 1 }} steps: - uses: actions/checkout@v2 - name: Run Sytest