aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-03-06 07:28:36 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-03-06 07:28:36 +0000
commitf64fda3df2748bb8263955349d421f2b202fc48b (patch)
tree46076283a859200be14fd6ea6356596a47df0543
parent84e45b9cfd949e4f78cc7bc8b70cc461f0548dab (diff)
downloadFMark-f64fda3df2748bb8263955349d421f2b202fc48b.tar.gz
FMark-f64fda3df2748bb8263955349d421f2b202fc48b.zip
Adding yarn dep
-rw-r--r--.travis.yml3
-rwxr-xr-xbuild.sh6
2 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 5321ce1..1551688 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,5 +4,6 @@ dotnet: 2.1.4
script:
- ${TRAVIS_BUILD_DIR}/build.sh
install:
+ - curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
- sudo apt-get -qq update
- - sudo apt-get install -y git autoconf libtool automake build-essential mono-devel gettext cmake
+ - sudo apt-get install -y git autoconf libtool automake build-essential mono-devel gettext cmake yarn
diff --git a/build.sh b/build.sh
index 624be79..2bad40c 100755
--- a/build.sh
+++ b/build.sh
@@ -14,9 +14,9 @@ else
echo "Compiling mono from source"
git clone -b mono-5.13.0.308 https://github.com/mono/mono.git
cd mono
- ./autogen.sh --prefix=$PREFIX
- make
- make install
+ ./autogen.sh --prefix=$PREFIX >/dev/null
+ make >/dev/null
+ make install >/dev/null
mono --version
fi