Skip to content

Commit b49fcb3

Browse files
committed
WIP. Remove GLIBC compilation
This did not fix GitHub Actions odd regression. Locally, this all works fine on Ubuntu 22.04 on ARM, so I’m still baffled. GH bug?
1 parent ed42098 commit b49fcb3

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,6 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
steps:
2020
- uses: actions/checkout@v4 # not pinning to commit hash since this is a GitHub action, which we trust
21-
- name: Install GLIBC for aarch64 Ubuntu 22.04
22-
if: ${{ matrix.os == 'ubuntu-22.04-arm' }}
23-
run: |
24-
sudo apt update
25-
sudo apt install -y libc6
26-
wget http://ftp.gnu.org/gnu/libc/glibc-2.39.tar.gz
27-
tar -xvzf glibc-2.39.tar.gz
28-
cd glibc-2.39
29-
mkdir build
30-
cd build
31-
../configure --prefix=/opt/glibc-2.39
32-
make -j$(nproc)
33-
sudo make install
34-
export LD_LIBRARY_PATH=/opt/glibc-2.39/lib:$LD_LIBRARY_PATH
3521
- uses: actions-rust-lang/setup-rust-toolchain@9d7e65c320fdb52dcd45ffaa68deb6c02c8754d9 # v1.12.0
3622
with:
3723
toolchain: ${{ matrix.rust-toolchain }}

0 commit comments

Comments
 (0)