Skip to content

Commit

Permalink
ci: downgrade glibc
Browse files Browse the repository at this point in the history
  • Loading branch information
krypton-byte committed Jul 21, 2024
1 parent 19bb596 commit 09a03bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
android:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
name: Android
path: neonize/*.so
zig:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
LIBS/*.so
LIBS/*.dll
linux:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
Expand Down
2 changes: 2 additions & 0 deletions repack.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ def auto(cls):
return cls.ARM64
elif arch_name == "x86_64":
return cls.X86_64
elif arch_name == "amd64":
return cls.X86_64
elif arch_name == "386":
return cls.I386
elif arch_name == "arm":
Expand Down

0 comments on commit 09a03bb

Please sign in to comment.