fix seccomp prevented call to disallowed arm system call 422 on 32bits Androids <= 10

This commit is contained in:
wwqgtxx
2026-02-21 17:51:52 +08:00
parent fb9ffa0b82
commit 5cd01b178a
6 changed files with 109 additions and 0 deletions

View File

@@ -32,6 +32,11 @@ jobs:
go-version: "1.26"
check-latest: true # Always check for the latest patch release
- name: Apply Patches
run: |
cd $(go env GOROOT)
for p in $GITHUB_WORKSPACE/.github/patch/*.patch; do patch --verbose -p 1 < "$p"; done
- uses: actions/cache@v4
with:
path: |

View File

@@ -30,6 +30,11 @@ jobs:
go-version: "1.26"
check-latest: true # Always check for the latest patch release
- name: Apply Patches
run: |
cd $(go env GOROOT)
for p in $GITHUB_WORKSPACE/.github/patch/*.patch; do patch --verbose -p 1 < "$p"; done
- uses: actions/cache@v4
with:
path: |

View File

@@ -34,6 +34,11 @@ jobs:
go-version: "1.26"
check-latest: true # Always check for the latest patch release
- name: Apply Patches
run: |
cd $(go env GOROOT)
for p in $GITHUB_WORKSPACE/.github/patch/*.patch; do patch --verbose -p 1 < "$p"; done
- uses: actions/cache@v4
with:
path: |

View File

@@ -26,6 +26,11 @@ jobs:
with:
go-version: "1.26"
check-latest: true # Always check for the latest patch release
- name: Apply Patches
run: |
cd $(go env GOROOT)
for p in $GITHUB_WORKSPACE/.github/patch/*.patch; do patch --verbose -p 1 < "$p"; done
- uses: actions/cache@v4
with: