added nbf option

This commit is contained in:
Andy Arthur
2022-06-02 16:52:22 -07:00
parent 88440b090b
commit e112761977
5 changed files with 28 additions and 6 deletions
@@ -42,6 +42,15 @@ jobs:
echo "::set-output name=benchmark::true"
performance:
strategy:
matrix:
biginit: ["true", "false"]
nbf: ["__LD_1__", "__DOLT_1__"]
exclude:
- biginit: "true"
nbf: "__DOLT_1__"
- bigint: "false"
nbf: "__LD_1__"
runs-on: ubuntu-18.04
needs: [validate-commentor, check-comments]
if: ${{ needs.check-comments.outputs.benchmark == 'true' }}
@@ -95,5 +104,6 @@ jobs:
ACTOR: ${{ github.actor }}
REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
KUBECONFIG: "./kubeconfig"
INIT_BIG_REPO: "true"
INIT_BIG_REPO: ${{ matrix.biginit }}
NOMS_BIN_FORMAT: ${{ matrix.nbf }}
TEMPLATE_SCRIPT: "./.github/scripts/performance-benchmarking/get-dolt-dolt-job-json.sh"