Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
ci-docker-images
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Algorithms Library Toolkit
infrastructure
ci-docker-images
Commits
1955d09d
Commit
1955d09d
authored
Apr 05, 2020
by
Tomáš Pecka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "[alt-builder] Revert to stable gcc"
This reverts commit
f8d537d7
parent
f8d537d7
Pipeline
#78043
passed with stage
in 7 minutes and 2 seconds
Changes
1
Pipelines
6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
17 deletions
+16
-17
Dockerfile
alt-builder/Dockerfile
+16
-17
No files found.
alt-builder/Dockerfile
View file @
1955d09d
FROM
amd64/debian:bullseye
RUN
apt-get update
&&
apt-get
install
-y
wget gnupg
&&
\
#echo "deb http://apt.llvm.org/unstable/ llvm-toolchain-10 main" >> /etc/apt/sources.list &&
\
#echo "deb-src http://apt.llvm.org/unstable/ llvm-toolchain-10 main" >> /etc/apt/sources.list &&
\
#wget -O llvm.key "https://apt.llvm.org/llvm-snapshot.gpg.key" && apt-key add llvm.key &&
\
#apt-get remove --purge -y wget gnupg &&
\
\
apt-get update
&&
\
apt-get
install
-y
g++
\
clang++-10 lld-10
\
cmake ninja-build python3
\
jq clang-tidy-10 cppcheck
\
libxml2-dev libreadline-dev qtbase5-dev graphviz-dev libjsoncpp-dev libtclap-dev
\
libxml2 libreadline8 libqt5widgets5 graphviz libqt5xml5 libjsoncpp1
&&
\
apt-get autoremove
-y
&&
\
apt-get clean
&&
\
rm
-rf
/var/lib/apt/lists/
*
&&
\
\
for
file
in
/usr/bin/
*
-10
;
do
ln
-sf
$file
$(
echo
$file
|
sed
's/-10$//g'
)
;
done
#echo "deb http://apt.llvm.org/unstable/ llvm-toolchain-10 main" >> /etc/apt/sources.list &&
\
#echo "deb-src http://apt.llvm.org/unstable/ llvm-toolchain-10 main" >> /etc/apt/sources.list &&
\
#wget -O llvm.key "https://apt.llvm.org/llvm-snapshot.gpg.key" && apt-key add llvm.key &&
\
#apt-get remove --purge -y wget gnupg &&
\
\
apt-get update
&&
\
apt-get
install
-y
g++ g++-10 clang++-10 lld-10
\
cmake ninja-build python3
\
jq clang-tidy-10 cppcheck
\
libxml2-dev libreadline-dev qtbase5-dev graphviz-dev libjsoncpp-dev libtclap-dev
\
libxml2 libreadline8 libqt5widgets5 graphviz libqt5xml5 libjsoncpp1
&&
\
apt-get autoremove
-y
&&
\
apt-get clean
&&
\
rm
-rf
/var/lib/apt/lists/
*
&&
\
\
for
file
in
/usr/bin/
*
-10
;
do
ln
-sf
$file
$(
echo
$file
|
sed
's/-10$//g'
)
;
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment