File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change 18
18
runs-on : ${{ matrix.os }}
19
19
steps :
20
20
- 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
35
21
- uses : actions-rust-lang/setup-rust-toolchain@9d7e65c320fdb52dcd45ffaa68deb6c02c8754d9 # v1.12.0
36
22
with :
37
23
toolchain : ${{ matrix.rust-toolchain }}
You can’t perform that action at this time.
0 commit comments