Skip to content

Commit

Permalink
Fix building prism in action. (#28509)
Browse files Browse the repository at this point in the history
* Fix building prism in action.

* test against this branch.

* Disable prism http server in test run.

* rm override.

---------

Co-authored-by: lostluck <[email protected]>
  • Loading branch information
lostluck and lostluck authored Sep 18, 2023
1 parent cd65aac commit 6d7c699
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions sdks/go/test/run_validatesrunner_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,12 @@ if [[ "$RUNNER" == "flink" || "$RUNNER" == "spark" || "$RUNNER" == "samza" || "$
--port $JOB_PORT &
elif [[ "$RUNNER" == "prism" ]]; then
PRISMBIN=$TMPDIR/prismbin
./sdks/go/run_with_go_version.sh build -o $PRISMBIN sdks/go/cmd/prism/*.go
$PRISMBIN --job_port $JOB_PORT &
cd sdks
./go/run_with_go_version.sh build -o $PRISMBIN go/cmd/prism/*.go
$PRISMBIN \
--serve_http=false \
--job_port $JOB_PORT &
cd ..
else
echo "Unknown runner: $RUNNER"
exit 1;
Expand Down

0 comments on commit 6d7c699

Please sign in to comment.