diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c6597d4..6ed3d0e0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -167,13 +167,7 @@ jobs: before-script-linux: | # If we're running on rhel centos, install needed packages. if command -v yum &> /dev/null; then - yum update -y && yum install -y perl-core openssl openssl-devel pkgconfig libatomic - - # If we're running on i686 we need to symlink libatomic - # in order to build openssl with -latomic flag. - if [[ ! -d "/usr/lib64" ]]; then - ln -s /usr/lib/libatomic.so.1 /usr/lib/libatomic.so - fi + yum update -y && yum install -y perl-core else # If we're running on debian-based system. apt update -y && apt-get install -y libssl-dev openssl pkg-config