Skip to content

Commit

Permalink
Merge branch 'main' into rgs/llvm_points_to_bitfield
Browse files Browse the repository at this point in the history
  • Loading branch information
dougch authored Jan 27, 2022
2 parents 8349387 + 86c8570 commit 60ea61c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion codebuild/bin/install_al2_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ if [[ ${DISTRO} != "amazon linux" ]]; then
fi

base_packages() {
yum erase -y nodejs
# Latest AL2 image had dependency issues related to NodeJS.
# We don't use NodeJS, so just remove it.
yum erase -y nodejs || true
yum update -y
# The default openssl-devel on AL2 is openssl-1.0.
# We replace it with openssl-1.1 later in the build process.
yum erase -y openssl-devel || true
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm || true
yum install amazon-linux-extras
Expand Down

0 comments on commit 60ea61c

Please sign in to comment.