Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2018-09-05 10:57:43 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2018-09-05 10:57:43 +0300
commit0e5a7816e7cb33a484052710176e00c2df97366b (patch)
tree7a288ab2957481798f9c130657733a2282970074 /scripts/ci/run-test-mac-sdk.sh
parentd5a419f6c82140912d18df25b0e251559726b754 (diff)
[ci] Fix run-test-mac-sdk.sh build
0dbcdd5c2812570b96876718f9f8e5f2b4c97177 added CFLAGS etc in front of the command but that's not something the TESTCMD can execute. We need to pass those variables to the whole process.
Diffstat (limited to 'scripts/ci/run-test-mac-sdk.sh')
-rwxr-xr-xscripts/ci/run-test-mac-sdk.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/run-test-mac-sdk.sh b/scripts/ci/run-test-mac-sdk.sh
index 65af780e9ee..601b3c7e774 100755
--- a/scripts/ci/run-test-mac-sdk.sh
+++ b/scripts/ci/run-test-mac-sdk.sh
@@ -1,6 +1,6 @@
#!/bin/bash -e
-${TESTCMD} --label=bockbuild --timeout=300m --fatal CFLAGS="$CFLAGS $EXTRA_CFLAGS" CXXFLAGS="$CXXFLAGS $EXTRA_CXXFLAGS" LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS" ${MONO_REPO_ROOT}/scripts/mac-sdk-package.sh
+CFLAGS="$CFLAGS $EXTRA_CFLAGS" CXXFLAGS="$CXXFLAGS $EXTRA_CXXFLAGS" LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS" ${TESTCMD} --label=bockbuild --timeout=300m --fatal ${MONO_REPO_ROOT}/scripts/mac-sdk-package.sh
# switch to using package Mono instead of system
export PATH=${MONO_REPO_ROOT}/external/bockbuild/stage/bin:$PATH