Files
Sourcetrail/deployment/dockerfiles
Louis St-AmourandGitHub a12deb2056 Fixes for Clang 10 compatibility (closes #965) (#968)
Primarily FrontendAction now gets passed as unique_ptr, but also StringRef was added in a few places. See https://releases.llvm.org/10.0.0/tools/clang/docs/ReleaseNotes.html#internal-api-changes and http://llvm.org/docs/ProgrammersManual.html#the-stringref-class Also, llvm::make_unique is now std::make_unique: https://reviews.llvm.org/D66259 because LLVM requires C++14.
2020-06-07 16:18:58 +02:00
..

Dockerfiles for Sourcetrail

Build docker images

docker build -t /:

Upload docker images

docker login docker push /:

Update Guide

delete old docker images

$ docker image ls $ docker rmi coatisoftware/centos6_64_qt_llvm: $ docker rmi coatisoftware/centos6_32_qt_llvm:

docker clean up

$ docker system prune

change library version numbers in docker files

build and upload docker images with new e.g. qt591-llvm500:

$ cd deployment/dockerfiles/linux/centos6_64 $ docker build -t coatisoftware/centos6_64_qt_llvm: .

$ docker login $ docker push coatisoftware/centos6_64_qt_llvm:

$ cd ../centos6_32 $ docker build -t coatisoftware/centos6_32_qt_llvm: .

$ docker push coatisoftware/centos6_32_qt_llvm:

update of linux images in .gitlab-ci.yml

commit and publish changes