mirror of
https://github.com/reactos/syzkaller.git
synced 2025-02-11 14:36:04 +00:00
Makefile: don't fail on unknown packages
Travis CI started failing with: E: Unable to locate package gcc-aarch64-linux-gnu E: Unable to locate package gcc-arm-linux-gnueabihf E: Unable to locate package gcc-powerpc64le-linux-gnu make: *** [install_prerequisites] Error 100 https://travis-ci.org/google/syzkaller/jobs/377740347 Let's try to ignore these packages.
This commit is contained in:
parent
63ef537b14
commit
e726f42b64
6
Makefile
6
Makefile
@ -292,10 +292,12 @@ clean:
|
||||
rm -rf ./bin/
|
||||
|
||||
# For a tupical Ubuntu/Debian distribution.
|
||||
# We use "|| true" for apt-get install because packages are all different on different distros,
|
||||
# and we want to install at least gometalinter on Travis CI.
|
||||
install_prerequisites:
|
||||
sudo apt-get install -y -q libc6-dev-i386 linux-libc-dev \
|
||||
gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf gcc-powerpc64le-linux-gnu
|
||||
sudo apt-get install -y -q g++-aarch64-linux-gnu g++-powerpc64le-linux-gnu g++-arm-linux-gnueabihf
|
||||
gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf gcc-powerpc64le-linux-gnu || true
|
||||
sudo apt-get install -y -q g++-aarch64-linux-gnu g++-powerpc64le-linux-gnu g++-arm-linux-gnueabihf || true
|
||||
go get -u gopkg.in/alecthomas/gometalinter.v2
|
||||
gometalinter.v2 --install
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user