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
path: root/mcs/build
diff options
context:
space:
mode:
authorKatelyn Gadd <kg@luminance.org>2019-05-31 13:03:31 +0300
committerMarek Safar <marek.safar@gmail.com>2019-05-31 13:03:31 +0300
commit8d858b20c555da92798a243a871528906368d2b0 (patch)
tree76695d6554625f8c8af8e8fbbfd86522a1f7b6b1 /mcs/build
parentd6075060556d907b1bfb97b3fe121cc8d74f06d7 (diff)
Add CI test coverage for compiler server (#14145)
* Add a warning to the gensources Makefile so it's not confusing when it fails to compile in non-build profiles * Add CI test script that verifies the compiler server functions * Fix bugs * Add compiler server tag to jenkins script * Add +x * Rename compiler server test tag
Diffstat (limited to 'mcs/build')
-rw-r--r--mcs/build/profiles/build.make4
-rwxr-xr-xmcs/build/start-compiler-server.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/mcs/build/profiles/build.make b/mcs/build/profiles/build.make
index efa20c1fa74..b1c9a410e1e 100644
--- a/mcs/build/profiles/build.make
+++ b/mcs/build/profiles/build.make
@@ -147,8 +147,8 @@ export VBCS_LOCATION
start-compiler-server:
echo Attempting to start compiler server...
- ./build/start-compiler-server.sh '$(realpath $(topdir))' '$(realpath $(topdir)/build)/compiler-server.log' '$(COMPILER_SERVER_PIPENAME)'
+ $(topdir)/build/start-compiler-server.sh '$(realpath $(topdir))' '$(realpath $(topdir)/build)/compiler-server.log' '$(COMPILER_SERVER_PIPENAME)'
else
start-compiler-server:
-endif \ No newline at end of file
+endif
diff --git a/mcs/build/start-compiler-server.sh b/mcs/build/start-compiler-server.sh
index b7df8cf969f..8c74d4c24b2 100755
--- a/mcs/build/start-compiler-server.sh
+++ b/mcs/build/start-compiler-server.sh
@@ -22,4 +22,4 @@ else
echo No compiler server found at path "$VBCS_LOCATION". Ensure that VBCS_LOCATION is set in config.make or passed as a parameter to make.
echo Use ENABLE_COMPILER_SERVER=0 to disable the use of the compiler server and continue to build.
exit 1
-fi; \ No newline at end of file
+fi;