Skip to content

Commit

Permalink
dev off
Browse files Browse the repository at this point in the history
  • Loading branch information
jangorecki committed May 11, 2019
1 parent a014a54 commit b2ebe34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions run.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# task, used in init-setup-iteration.R
export RUN_TASKS="join" # groupby" # sort read"
export RUN_TASKS="groupby" # join sort read"

# solution, used in init-setup-iteration.R
export RUN_SOLUTIONS="pandas" # "data.table dplyr pandas pydatatable spark dask juliadf" # clickhouse"
export RUN_SOLUTIONS="data.table dplyr pandas pydatatable spark dask juliadf" # clickhouse"

# not run benchmarks but print what would run and what skipped
export MOCKUP=false
Expand All @@ -11,13 +11,13 @@ export MOCKUP=false
export CSV_VERBOSE=false

# flag to upgrade tools, used in run.sh on init
export DO_UPGRADE=false
export DO_UPGRADE=true

# force run, ignore if same version was run already
export FORCE_RUN=false

# flag to build reports, used in ruh.sh before publish
export DO_REPORT=false
export DO_REPORT=true

# flag to publish, used in ruh.sh before exit
export DO_PUBLISH=false
export DO_PUBLISH=true
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if [[ "$DO_UPGRADE" == true && "$RUN_SOLUTIONS" =~ "spark" ]]; then ./spark/init
# produce VERSION, REVISION files for each solution
set +e
./versions.sh
#if [[ $? -ne 0 ]]; then echo "# Benchmark run $BATCH failed to check versions of currently installed solutions" && rm -f ./run.lock && exit; fi;
if [[ $? -ne 0 ]]; then echo "# Benchmark run $BATCH failed to check versions of currently installed solutions" && rm -f ./run.lock && exit; fi;
set -e

# run
Expand Down

0 comments on commit b2ebe34

Please sign in to comment.