mirror of https://gitlab.com/fscarmen/test.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
975 B
35 lines
975 B
name: "Build Glibc V2.28"
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
Building:
|
|
name: "Build Glibc on CentOS 7"
|
|
runs-on: ubuntu-latest
|
|
container: docker.io/centos:7
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: build
|
|
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
|
|
wget http://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.gz
|
|
mkdir -p /opt/release/
|
|
tar zxf glibc-2.28.tar.gz -C /opt/release/
|
|
mkdir -p /opt/release/glibc-2.28/build
|
|
ls /opt/release/glibc-2.28/
|
|
|
|
- name: Binaries Release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
files: /opt/release/glibc-2.28
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
|