Skip to content

Commit eaf6a8e

Browse files
committed
Decreased the build time on the Linux CI.
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent e035b27 commit eaf6a8e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build/InstallMono.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ elif [ "$OS" == "Linux" ]; then
77
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
88
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
99
sudo apt-get update -qq
10-
sudo apt-get install -y --force-yes mono-devel
10+
sudo apt-get install -y --force-yes mono-mcs libmono-system-runtime4.0-cil
1111
fi

build/InstallNugets.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
wget https://nuget.org/nuget.exe
1+
wget https://github.com/nunit/nunit-console/releases/download/v3.9/NUnit.Console-3.9.0.zip
22
BUILD_DIR=$(dirname -- $0)
3-
mono nuget.exe install NUnit.ConsoleRunner -Version 3.6.1 -OutputDirectory $BUILD_DIR/../deps
3+
unzip NUnit.Console-3.9.0.zip -d $BUILD_DIR/../deps/NUnit.Console-3.9.0

build/RunTests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ set -e
22
BUILD_DIR=$(dirname -- $0)
33
MONO_PATH=$BUILD_DIR/../deps/NUnit.ConsoleRunner.3.6.1/tools \
44
cp $BUILD_DIR/../deps/NUnit/nunit.framework.* $BUILD_DIR/gmake/lib/Release_*/
5-
mono $BUILD_DIR/../deps/NUnit.ConsoleRunner.3.6.1/tools/nunit3-console.exe -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll
5+
mono $BUILD_DIR/../deps/NUnit.Console-3.9.0/nunit3-console.exe -noresult $BUILD_DIR/gmake/lib/Release_*/*Tests*.dll

0 commit comments

Comments
 (0)