Use Docker for Build Target clang-format for travis.
This uses the (apparently) more stable Ubuntu Repo instead of the LLVM one.master
parent
98ffad4303
commit
947831ff1e
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash -ex
|
||||||
|
|
||||||
|
docker run -v $(pwd):/yuzu ubuntu:18.04 /bin/bash /yuzu/.travis/clang-format/docker.sh
|
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh -ex
|
||||||
|
|
||||||
|
docker pull ubuntu:18.04
|
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash -ex
|
||||||
|
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y clang-format-6.0
|
||||||
|
|
||||||
|
# Run clang-format
|
||||||
|
cd /yuzu
|
||||||
|
./.travis/clang-format/script.sh
|
Loading…
Reference in New Issue