Skip to content

Commit

Permalink
Try different glibc 28
Browse files Browse the repository at this point in the history
  • Loading branch information
raub committed Nov 24, 2024
1 parent 230cbb4 commit 92406b8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ jobs:

- restore_cache:
name: Restore GLIBC Cache
key: glibc-2.40-v4
key: glibc-2.35-v4
- run: |
if [ -d "/home/circleci/glibc" ]; then
echo "GLIBC 2.40 already cached."
echo "GLIBC 2.35 already cached."
else
echo "Building GLIBC 2.40 from source."
echo "Building GLIBC 2.35 from source."
sudo apt-get -y install bison
cd ~
git clone --branch release/2.40/master --depth 1 https://sourceware.org/git/glibc.git
git clone --branch release/2.35/master --depth 1 https://sourceware.org/git/glibc.git
cd glibc
mkdir build
cd build
Expand All @@ -62,7 +62,7 @@ jobs:
fi
- save_cache:
name: Save GLIBC Cache
key: glibc-2.40-v4
key: glibc-2.35-v4
paths:
- ../glibc

Expand Down

0 comments on commit 92406b8

Please sign in to comment.