Update Glibc.yml

dependabot/github_actions/actions/checkout-3.1.0 v1.0.20
fscarmen 4 years ago committed by GitHub
parent 5ec427d6ef
commit 1fd5db5cb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      .github/workflows/Glibc.yml

@ -19,13 +19,14 @@ jobs:
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
scl enable devtoolset-8 bash
# source /opt/rh/devtoolset-8/enable
mkdir -p /opt/release/
- name: Build make v4.3
run: |
wget http://ftp.gnu.org/gnu/make/make-4.3.tar.gz
tar -xzvf make-4.3.tar.gz
tar -xzf make-4.3.tar.gz
cd make-4.3
./configure
make
@ -37,13 +38,13 @@ jobs:
- name: Build glibc v2.28
run: |
wget http://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.gz
tar -zxvf 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
tar -czvf /opt/release/glibc-2.28.tar.gz ~/glibc-2.28
tar -czf /opt/release/glibc-2.28.tar.gz ~/glibc-2.28
- name: Binaries Release
uses: softprops/action-gh-release@v1

Loading…
Cancel
Save