-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the "format" keyword from schemas before running
Supporting "format" is optional in all the schemas we are considering. Since Blaze does not implement "format", it would be unfair to compare against other implementations that are performing check this
- Loading branch information
1 parent
5318fc1
commit 93c6a77
Showing
3 changed files
with
27 additions
and
17 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,9 +47,15 @@ jobs: | |
id: cache-report | ||
with: | ||
path: dist/report.csv | ||
key: ${{ matrix.impl }}-${{ hashFiles(format('implementations/{0}/**/*', matrix.impl), 'schemas/**/*', 'report.sh') }}-${{ inputs.runs || 3 }} | ||
key: noformat-${{ matrix.impl }}-${{ hashFiles(format('implementations/{0}/**/*', matrix.impl), 'schemas/**/*', 'report.sh') }}-${{ inputs.runs || 3 }} | ||
lookup-only: ${{ matrix.skip_cache || startsWith(matrix.impl, 'blaze') || github.event_name == 'schedule' }} | ||
|
||
- name: Install gron | ||
uses: jaxxstorm/[email protected] | ||
with: | ||
repo: tomnomnom/gron | ||
tag: v0.7.1 | ||
|
||
- name: Run benchmarks | ||
if: steps.cache-report.outputs.cache-hit != 'true' | ||
continue-on-error: true | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
/dist | ||
/implementations/ajv/node_modules | ||
/implementations/boon/target/ | ||
/schemas/*/schema-noformat.json | ||
/.DS_Store | ||
/node_modules | ||
.dockertimestamp |
This file contains 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