Skip to content

Commit

Permalink
Merge pull request #23978 from redpanda-data/tinygo
Browse files Browse the repository at this point in the history
transform-sdk/go/tests: remove -quiet flag
  • Loading branch information
rockwotj authored Oct 31, 2024
2 parents 06ba720 + 98cc49b commit 64375e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ find_package(Python3 REQUIRED COMPONENTS Interpreter)
function(add_wasm_transform NAME)
find_program(TINYGO_BIN "tinygo")
set(wasm_output "${CMAKE_CURRENT_BINARY_DIR}/${NAME}.wasm")
set(tinygo_cmd ${TINYGO_BIN} build -o ${wasm_output} -quiet -target wasi -scheduler none "${NAME}/transform.go")
set(tinygo_cmd ${TINYGO_BIN} build -o ${wasm_output} -target wasi -scheduler none "${NAME}/transform.go")
set(gopath ${CMAKE_CURRENT_BINARY_DIR}/${NAME})
add_custom_command(OUTPUT ${wasm_output}
COMMAND Python3::Interpreter ${CMAKE_CURRENT_SOURCE_DIR}/retry.py
Expand Down

0 comments on commit 64375e9

Please sign in to comment.