Skip to content

Commit

Permalink
ansible,jenkins: install and use GCC 10 on ubuntu2004_sharedlibs
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Sep 13, 2023
1 parent 4e3a1d8 commit ef1e4a0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ RUN apt-get update && apt-get install apt-utils -y && \
ccache \
g++-8 \
gcc-8 \
g++-10 \
gcc-10 \
git \
openjdk-17-jre-headless \
pkg-config \
Expand Down
12 changes: 12 additions & 0 deletions jenkins/scripts/select-compiler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,18 @@ elif [ "$SELECT_ARCH" = "ARM64" ]; then
fi
echo "Compiler set to GCC" `$CXX -dumpversion`
;;
*ubuntu2004_sharedlibs* )
if [ "$NODEJS_MAJOR_VERSION" -gt "19" ]; then
export CC="ccache gcc-10"
export CXX="ccache g++-10"
export LINK="g++-10"
else
export CC="ccache gcc"
export CXX="ccache g++"
export LINK="g++"
fi
echo "Compiler set to GCC" `$CXX -dumpversion`
;;
esac

fi

0 comments on commit ef1e4a0

Please sign in to comment.