/.github/{actions,workflows}: fix correctness for both formats

This commit is contained in:
coffeegoddd
2022-07-21 15:22:13 -07:00
parent f66bc18478
commit 2eb83de16a
5 changed files with 32 additions and 8 deletions

View File

@@ -39,5 +39,6 @@ jobs:
template: ${{ github.event.client_payload.template }}
region: us-west-2
version: ${{ github.event.client_payload.version }}
format: ${{ github.event.client_payload.noms_bin_format }}
toAddresses: ${{ steps.get-addresses.outputs.addresses }}
dataFile: ${{ format('{0}/results.log', github.workspace) }}

View File

@@ -35,6 +35,9 @@ jobs:
runs-on: ubuntu-18.04
needs: set-version-actor
name: Dolt SQL Correctness
strategy:
matrix:
dolt_fmt: [ "__LD_1__", "__DOLT_1__" ]
steps:
- uses: actions/checkout@v2
- uses: azure/setup-kubectl@v2.0
@@ -70,4 +73,5 @@ jobs:
ACTOR_EMAIL: ${{ github.event.inputs.email }}
REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
KUBECONFIG: "./kubeconfig"
NOMS_BIN_FORMAT: ${{ matrix.dolt_fmt }}
TEMPLATE_SCRIPT: "./.github/scripts/sql-correctness/get-dolt-correctness-job-json.sh"