From 2c8b8e2ee370295e3e9f7a8ac2cc2ab717228a0c Mon Sep 17 00:00:00 2001 From: fscarmen <62703343+fscarmen@users.noreply.github.com> Date: Sat, 12 Mar 2022 10:45:47 +0800 Subject: [PATCH] Update Glibc.yml --- .github/workflows/Glibc.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Glibc.yml b/.github/workflows/Glibc.yml index ecfc82f..59017ea 100644 --- a/.github/workflows/Glibc.yml +++ b/.github/workflows/Glibc.yml @@ -13,20 +13,31 @@ jobs: steps: - uses: actions/checkout@v2 - - name: build + - name: Build make run: | yum -y install gcc bison make centos-release-scl wget 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 + mkdir -p /opt/release/ + wget http://ftp.gnu.org/gnu/make/make-4.3.tar.gz + tar -xzvf make-4.3.tar.gz + cd make-4.3 + ./configure + make + make install + echo y | cp -f ./make /usr/bin/ + cp ./make /opt/release/ + cd ~ + + - name: Build glibc-2.28 + run: | wget http://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.gz tar -zxvf glibc-2.28.tar.gz mkdir -p ./glibc-2.28/build mkdir -p /opt/release/ tar -czvf /opt/release/glibc-2.28.tar.gz ./glibc-2.28 - ls /opt/release - name: Binaries Release uses: softprops/action-gh-release@v1