From b361de743ad638fee10ccfc752194137be6debbb Mon Sep 17 00:00:00 2001 From: Huy Pham <11185878+hdp617@users.noreply.github.com> Date: Mon, 3 Aug 2020 15:12:13 -0700 Subject: [PATCH] test: lock the version of the conformance tool Since the conformance tool is actively developed and there are breaking changes, we temporarily use a fixed commit of the conformance tool to avoid breaking our CI workflows. --- test/conformance/run-conformance-tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/conformance/run-conformance-tests.sh b/test/conformance/run-conformance-tests.sh index 64031dd6..f78262fc 100755 --- a/test/conformance/run-conformance-tests.sh +++ b/test/conformance/run-conformance-tests.sh @@ -7,7 +7,10 @@ cd ../.. && npm install && cd $OLDPWD echo "" echo "Install Functions Framework Conformance" +rm -rf functions-framework-conformance git clone https://github.com/GoogleCloudPlatform/functions-framework-conformance.git +# Lock a version of the conformance tool until the tool is stable. +cd functions-framework-conformance && git checkout 53593adc9a4aa887450501b1de16f2d7c619ce42 && cd $OLDPWD cd functions-framework-conformance/client && go build && cd $OLDPWD run_test() {