Skip to content
Snippets Groups Projects
Commit f29d1f77 authored by Craig Tiller's avatar Craig Tiller
Browse files

Update clang-format to 3.8

parent fb6e13b1
No related branches found
No related tags found
No related merge requests found
...@@ -27,9 +27,13 @@ ...@@ -27,9 +27,13 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
FROM ubuntu:vivid FROM ubuntu:wily
RUN apt-get update RUN apt-get update
RUN apt-get -y install clang-format-3.6 RUN apt-get -y install wget
RUN echo deb http://llvm.org/apt/wily/ llvm-toolchain-wily main >> /etc/apt/sources.list
RUN echo deb-src http://llvm.org/apt/wily/ llvm-toolchain-wily main >> /etc/apt/sources.list
RUN wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key| apt-key add -
RUN apt-get update
RUN apt-get -y install clang-format-3.8
ADD clang_format_all_the_things.sh / ADD clang_format_all_the_things.sh /
CMD ["echo 'Run with tools/distrib/clang_format_code.sh'"] CMD ["echo 'Run with tools/distrib/clang_format_code.sh'"]
...@@ -37,7 +37,7 @@ DIRS="src/core src/cpp test/core test/cpp include" ...@@ -37,7 +37,7 @@ DIRS="src/core src/cpp test/core test/cpp include"
GLOB="*.h *.c *.cc" GLOB="*.h *.c *.cc"
# clang format command # clang format command
CLANG_FORMAT=clang-format-3.6 CLANG_FORMAT=clang-format-3.8
files= files=
for dir in $DIRS for dir in $DIRS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment