Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: .travis/prepare-ninja.sh

Issue 29663688: Issue 6220 - add travis-ci configuration for adblockpluscore (Closed) Base URL: github.com:adblockplus/adblockpluscore
Patch Set: rebase & fix openssl version on osx Created March 1, 2018, 10:52 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #!/usr/bin/env bash
2
3 set -x
4 set -e
5
6 if [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
7 brew update; brew install ninja;
8 else
9 wget https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.z ip -O third_party/ninja-build.zip
10 mkdir third_party/ninja
11 unzip third_party/ninja-build.zip -d third_party/ninja
12 fi
OLDNEW

Powered by Google App Engine
This is Rietveld