Skip to content

Commit

Permalink
Update casa.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrykuku authored Jan 4, 2022
1 parent 4a6fc9a commit 601e7ce
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/casa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,17 @@ jobs:
# git clone $REPO_URL -b $REPO_BRANCH --recursive casa
# ln -sf /workdir/casa $GITHUB_WORKSPACE/casa
# ls


- name: Compile glibc
run: |
wget -q http://ftp.gnu.org/gnu/glibc/glibc-2.30.tar.bz2
sudo mkdir /opt/glibc230
tar xvfj glibc-2.30.tar.bz2
mkdir build
cd build
../glibc-2.30/configure --prefix=/opt/glibc230 --enable-cet
sudo make -j$(($(nproc) + 1))
sudo make install
- name: Set enviroment for github-release
run: |
Expand Down Expand Up @@ -98,7 +108,7 @@ jobs:
v: true
x: false
race: false
ldflags: -s -w -extldflags "-static"
ldflags: -s -w -L /opt/glibc230/lib -extldflags "-static"
buildmode: default
#
# - name: List Files
Expand Down

0 comments on commit 601e7ce

Please sign in to comment.