You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello :)
I am having a hard time to change GCC version on centos image.
I use Docker image to build on a centos environment.
I made my base image and I tried to use the image.
I already set the "scl" command for my base image.
I also gave these two commands inside of my Dockerfile.
SHELL [ "/usr/bin/scl", "enable", "devtoolset-8"]
ENV BASH_ENV=/opt/app-root/etc/scl_enable \
ENV=/opt/app-root/etc/scl_enable \
PROMPT_COMMAND=". /opt/rh/devtoolset-8/enable"
So, when I ran container from the image, it works well (I checked both bash and sh ).
But bamboo seems not to use my base image and cannot compile source code because it uses GCC version 4.
If anyone has an idea, please let help me.
I used a script Task and also tried scl command inside of it. but it didn't work
Thank you
I don't know why scl enable devtoolset-8 bash, scl enable devtoolset-8 sh were not working
but I changed my. /opt/rh/devtoolset-8/enable now it is working correctly.
Thank you
https://unix.stackexchange.com/questions/175851/how-to-permanently-enable-scl-centos-6-4
Instead of scl enable you should try scl_source enable
/opt/rh/devtoolset-8/enable and scl_source enable devtoolset-8 are same according to this answer
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.