Update Glibc.yml

dependabot/github_actions/actions/checkout-3.1.0
fscarmen 4 years ago committed by GitHub
parent 8f08f48235
commit 69e5637396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 30
      .github/workflows/Glibc.yml

@ -13,19 +13,17 @@ jobs:
uses: actions/checkout@v2
- name: Build
uses: docker/login-action@v1
run: |
yum -y install gcc bison make centos-release-scl
yum -y install devtoolset-8-gcc
yum -y install devtoolset-8-gcc-c++
yum -y install devtoolset-8-binutils
source /opt/rh/devtoolset-8/enable
wget -O /usr/bin/make https://github.com/fscarmen/tools/raw/main/make
curl -O http://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.gz
tar zxf glibc-2.28.tar.gz
mkdir -p ./glibc-2.28/build; cd ./glibc-2.28/build
../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin
make
make install
rm -rf ./glibc-2.28
run: |
yum -y install gcc bison make centos-release-scl
yum -y install devtoolset-8-gcc
yum -y install devtoolset-8-gcc-c++
yum -y install devtoolset-8-binutils
source /opt/rh/devtoolset-8/enable
wget -O /usr/bin/make https://github.com/fscarmen/tools/raw/main/make
curl -O http://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.gz
tar zxf glibc-2.28.tar.gz
mkdir -p ./glibc-2.28/build; cd ./glibc-2.28/build
../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin
make
make install
rm -rf ./glibc-2.28

Loading…
Cancel
Save