Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(CI): remove ubuntu-18.04 #12650

Merged
merged 8 commits into from
Aug 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update
  • Loading branch information
locus313 committed Aug 7, 2022
commit e65810c0bb452925b4b29bc6d23239c9d997d49f
2 changes: 1 addition & 1 deletion apps/installer/includes/os_configs/ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sudo apt update
sudo apt-get -y install ccache clang cmake curl google-perftools libmysqlclient-dev make unzip

if [[ $CONTINUOUS_INTEGRATION && $UBUNTU_VERSION == "22.04" || $DOCKER && $UBUNTU_VERSION == "22.04" ]]; then
sudo apt update && sudo apt-get -y install build-essential cmake-data \
sudo apt update && sudo apt remove libunwind-14-dev && sudo apt-get -y install build-essential cmake-data \
libboost-all-dev libbz2-dev libncurses5-dev libmysql++-dev libgoogle-perftools-dev libreadline6-dev libssl-dev libtool \
openssl zlib1g-dev
elif [[ $CONTINUOUS_INTEGRATION && $UBUNTU_VERSION == "20.04" || $DOCKER && $UBUNTU_VERSION == "20.04" ]]; then
Expand Down