Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
squid233 committed Jan 4, 2025
1 parent ebbf156 commit 8130351
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,27 @@ jobs:
source scl_source enable devtoolset-11 || true
cmake3 --build build --parallel
strip build/libopenal.so
- name: Update dependencies
run: |
yum -y install wget gcc
scl enable devtoolset-11 bash
source /opt/rh/devtoolset-11/enable
wget http://ftp.gnu.org/gnu/make/make-4.2.tar.gz
tar -xzvf make-4.2.tar.gz
cd make-4.2
sudo ./configure
sudo make
sudo make install
sudo rm -rf /usr/bin/make
sudo cp ./make /usr/bin/
yum install -y bison
- name: Update glibc
run: |
yum -y install wget
wget http://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.gz
tar -xf glibc-2.28.tar.gz -C /usr/local/
cd /usr/local/glibc-2.28/
mkdir build
cd build/
yum -y install gcc
../configure --prefix=/usr/local/glibc-2.28
- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 8130351

Please sign in to comment.