From: Kirill Yukhin <kyukhin@tarantool.org> To: avtikhon@tarantool.org Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH 2/2] ci: add replace clang8 with clang11 Date: Tue, 6 Oct 2020 14:21:23 +0300 [thread overview] Message-ID: <20201006112123.g52kaxkqlpkgp4bz@tarantool.org> (raw) In-Reply-To: <60bc8f4890c83dc5bd5a8bdf6d4e5eeab1551a64.1601977644.git.kyukhin@tarantool.org> Hello, On 06 окт 12:59, Kirill Yukhin wrote: > Update Clang 8 testing with most recent version of > Clang: 11. > > Closes #5386 It was decided to keep clang8 as well. Iterative patch in the bottom. Docker pre-built image updated. Branch force-pushed. -- Regards, Kirill Yukhin diff --git a/.gitlab.mk b/.gitlab.mk index 6e260dc..e1a83ac 100644 --- a/.gitlab.mk +++ b/.gitlab.mk @@ -40,7 +40,7 @@ export DEBIAN_STRETCH_DOCKERFILE define DEBIAN_BUSTER_DOCKERFILE FROM packpack/packpack:debian-buster COPY .travis.mk . -RUN make APT_EXTRA_FLAGS="--allow-releaseinfo-change-version --allow-releaseinfo-change-suite" -f .travis.mk deps_buster_clang_11 +RUN make APT_EXTRA_FLAGS="--allow-releaseinfo-change-version --allow-releaseinfo-change-suite" -f .travis.mk deps_buster_clang_8 deps_buster_clang_11 endef export DEBIAN_BUSTER_DOCKERFILE diff --git a/.travis.mk b/.travis.mk index 88ddbe4..d797472 100644 --- a/.travis.mk +++ b/.travis.mk @@ -76,6 +76,13 @@ deps_debian: python-msgpack python-yaml python-argparse python-six python-gevent \ lcov ruby clang llvm llvm-dev zlib1g-dev autoconf automake libtool +deps_buster_clang_8: deps_debian + echo "deb http://apt.llvm.org/buster/ llvm-toolchain-buster-8 main" > /etc/apt/sources.list.d/clang_8.list + echo "deb-src http://apt.llvm.org/buster/ llvm-toolchain-buster-8 main" >> /etc/apt/sources.list.d/clang_8.list + wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - + apt-get update + apt-get install -y clang-8 llvm-8-dev + deps_buster_clang_11: deps_debian echo "deb http://apt.llvm.org/buster/ llvm-toolchain-buster-11 main" > /etc/apt/sources.list.d/clang_11.list echo "deb-src http://apt.llvm.org/buster/ llvm-toolchain-buster-11 main" >> /etc/apt/sources.list.d/clang_11.list
next prev parent reply other threads:[~2020-10-06 11:21 UTC|newest] Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-10-06 9:59 [Tarantool-patches] [PATCH 0/2] Replace clang 8 with clang 11 in CI Kirill Yukhin 2020-10-06 9:59 ` [Tarantool-patches] [PATCH 1/2] Remove C99 extension usage from C++ file Kirill Yukhin 2020-10-06 10:36 ` Cyrill Gorcunov 2020-10-06 9:59 ` [Tarantool-patches] [PATCH 2/2] ci: add replace clang8 with clang11 Kirill Yukhin 2020-10-06 11:21 ` Kirill Yukhin [this message] 2020-10-06 12:46 ` Alexander V. Tikhonov 2020-10-06 14:50 ` [Tarantool-patches] [PATCH 0/2] Replace clang 8 with clang 11 in CI Kirill Yukhin
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20201006112123.g52kaxkqlpkgp4bz@tarantool.org \ --to=kyukhin@tarantool.org \ --cc=avtikhon@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH 2/2] ci: add replace clang8 with clang11' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox