mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-04 11:30:14 -05:00
13 lines
264 B
Bash
Executable File
13 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
dolt version
|
|
# Github Actions ignores the WORKDIR?
|
|
cd ./go/performance/utils/sysbench_runner/cmd
|
|
DEBUG=1 go run . --config=/config.json
|
|
|
|
cd /dolt/go/performance/utils/tpcc_runner/cmd
|
|
DEBUG=1 go run . --config=/tpcc-config.json
|