mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-24 11:59:58 +00:00
d23e90a7b4
Differences in code formatting between Go versions cause constant problems for us (https://github.com/golang/go/issues/25161). Currently we support 1.9 and 1.10. Switch to newer 1.11 and 1.12. Fixes #1013
34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
language: go
|
|
dist: xenial
|
|
|
|
go:
|
|
- "1.11"
|
|
- "1.12"
|
|
|
|
before_install:
|
|
- echo $PATH
|
|
- export PATH=`echo $PATH | sed -e 's/:\/usr\/local\/clang-[0-9].[0-9].[0-9]\/bin//'`
|
|
- wget http://security.ubuntu.com/ubuntu/pool/main/g/gcc-5/libstdc++6_5.4.0-6ubuntu1~16.04.10_amd64.deb
|
|
- mkdir ./libc
|
|
- dpkg-deb -x ./libstdc++6_5.4.0-6ubuntu1~16.04.10_amd64.deb ./libc
|
|
- export LD_LIBRARY_PATH=`pwd`/libc/usr/lib/x86_64-linux-gnu/
|
|
- wget http://releases.llvm.org/6.0.1/clang+llvm-6.0.1-x86_64-linux-gnu-ubuntu-14.04.tar.xz
|
|
- tar -xf ./clang+llvm-6.0.1-x86_64-linux-gnu-ubuntu-14.04.tar.xz
|
|
- sudo cp clang+llvm-6.0.1-x86_64-linux-gnu-ubuntu-14.04/bin/clang-format /usr/local/bin/
|
|
- which clang-format
|
|
- clang-format --version
|
|
|
|
install: true
|
|
|
|
script:
|
|
- make install_prerequisites
|
|
- make presubmit
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
# If the build fails because some code in not formatted, it's nice to see the diffs after formatting.
|
|
after_failure:
|
|
- git diff --name-only
|
|
- git diff
|