diff --git a/.github/workflows/ci-performance-benchmarks-release.yaml b/.github/workflows/ci-performance-benchmarks-release.yaml index 1ba05a5439..9b02f2eff3 100644 --- a/.github/workflows/ci-performance-benchmarks-release.yaml +++ b/.github/workflows/ci-performance-benchmarks-release.yaml @@ -38,6 +38,9 @@ jobs: runs-on: ubuntu-18.04 needs: set-version-actor name: Benchmark Dolt Release vs MySQL 8 + strategy: + matrix: + dolt_fmt: [ "__LD_1__", "__DOLT_1__" ] steps: - uses: actions/checkout@v2 - uses: azure/setup-kubectl@v2.0 @@ -76,5 +79,5 @@ jobs: ACTOR_EMAIL: ${{ needs.set-version-actor.outputs.actor_email }} REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} KUBECONFIG: "./kubeconfig" - NOMS_BIN_FORMAT: "__LD_1__" + NOMS_BIN_FORMAT: ${{ matrix.dolt_fmt }} TEMPLATE_SCRIPT: "./.github/scripts/performance-benchmarking/get-mysql-dolt-job-json.sh" diff --git a/.github/workflows/ci-performance-benchmarks.yaml b/.github/workflows/ci-performance-benchmarks.yaml index e65aa614a3..af6da5e0d4 100644 --- a/.github/workflows/ci-performance-benchmarks.yaml +++ b/.github/workflows/ci-performance-benchmarks.yaml @@ -46,6 +46,9 @@ jobs: needs: [validate-commentor, check-comments] if: ${{ needs.check-comments.outputs.benchmark == 'true' }} name: Benchmark Performance + strategy: + matrix: + dolt_fmt: [ "__LD_1__", "__DOLT_1__" ] steps: - name: Checkout uses: actions/checkout@v2 @@ -96,5 +99,5 @@ jobs: REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} KUBECONFIG: "./kubeconfig" INIT_BIG_REPO: "true" - NOMS_BIN_FORMAT: "__LD_1__" + NOMS_BIN_FORMAT: ${{ matrix.dolt_fmt }} TEMPLATE_SCRIPT: "./.github/scripts/performance-benchmarking/get-dolt-dolt-job-json.sh"