Skip to content

Commit

Permalink
ci: drop cpp20 docker image
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Bandeira <[email protected]>
  • Loading branch information
Vitor Bandeira committed Nov 13, 2024
1 parent aec9a7d commit e6efe8a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def getParallelTests(String image) {

'Compile with C++20': {
node {
docker.image('openroad/ubuntu-cpp20').inside('--user=root --privileged -v /var/run/docker.sock:/var/run/docker.sock') {
docker.image(image).inside('--user=root --privileged -v /var/run/docker.sock:/var/run/docker.sock') {
stage('Setup C++20 Compile') {
sh label: 'Configure git', script: "git config --system --add safe.directory '*'";
checkout scm;
Expand Down
13 changes: 0 additions & 13 deletions docker/Dockerfile.cpp20

This file was deleted.

8 changes: 8 additions & 0 deletions etc/DependencyInstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,9 @@ _installCI() {
apt-transport-https \
ca-certificates \
curl \
gnupg \
jq \
lsb-release \
parallel \
software-properties-common

Expand Down Expand Up @@ -696,6 +698,12 @@ _installCI() {
docker-ce-cli \
containerd.io \
docker-buildx-plugin

# Install clang for C++20 support
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
./llvm.sh 16 all

}

_checkIsLocal() {
Expand Down

0 comments on commit e6efe8a

Please sign in to comment.