mirror of
https://github.com/dolthub/dolt.git
synced 2026-03-09 01:56:30 -05:00
no error for rmdir
This commit is contained in:
4
.github/scripts/merge-perf/data.py
vendored
4
.github/scripts/merge-perf/data.py
vendored
@@ -14,7 +14,9 @@ adds = int(sys.argv[4])
|
||||
|
||||
if __name__=="__main__":
|
||||
if not os.path.exists(table_dir):
|
||||
os.rmdir(table_dir)
|
||||
try:
|
||||
os.rmdir(table_dir)
|
||||
except:
|
||||
os.makedirs(table_dir)
|
||||
|
||||
ys = [i for i in range(rows+adds)]
|
||||
|
||||
4
.github/workflows/merge-perf-pr.yaml
vendored
4
.github/workflows/merge-perf-pr.yaml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Run Systab Benchmark on Pull Requests
|
||||
name: Run Merge Benchmark on Pull Requests
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
@@ -45,7 +45,7 @@ jobs:
|
||||
runs-on: ubuntu-22.04
|
||||
needs: [validate-commentor, check-comments]
|
||||
if: ${{ needs.check-comments.outputs.benchmark == 'true' }}
|
||||
name: Trigger Benchmark Systab Workflow
|
||||
name: Trigger Benchmark Merge Workflow
|
||||
steps:
|
||||
- uses: dolthub/pull-request-comment-branch@v3
|
||||
id: comment-branch
|
||||
|
||||
Reference in New Issue
Block a user