File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ steps:
106106 ORB_VAL_RUN : <<parameters.run>>
107107 ORB_EVAL_COVER_PROFILE : <<parameters.coverprofile>>
108108 ORB_EVAL_PROJECT_PATH : <<parameters.project-path>>
109+ MAX_PARALLELISM_GO_CONTENTS : <<include(max_parallelism/main.go)>>
109110 command : <<include(scripts/test.sh)>>
110111 name : " go test"
111112 no_output_timeout : <<parameters.no_output_timeout>>
File renamed without changes.
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22if [ " ${ORB_VAL_PARALLEL} " = " m" ] || [ " ${ORB_VAL_PARALLEL_TESTS} " = " m" ]; then
3- GOMAXPROCS=$( go run max_parallelism/main.go)
3+ mkdir -p /tmp/go-orb/max_parallelism/
4+ echo " $MAX_PARALLELISM_GO_CONTENTS " > /tmp/go-orb/max_parallelism/main.go
5+ GOMAXPROCS=$( go run /tmp/go-orb/max_parallelism/main.go)
6+ rm -rf /tmp/go-orb
47fi
58
69if [ " ${ORB_VAL_PARALLEL} " = " m" ]; then
You can’t perform that action at this time.
0 commit comments