You've already forked Zygisk-Assistant
mirror of
https://github.com/snake-4/Zygisk-Assistant.git
synced 2025-09-06 06:37:02 +00:00
Updated GitHub CI workflow...
and changed a log message.
This commit is contained in:
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -36,13 +36,13 @@ jobs:
|
|||||||
unzip module/build/outputs/release/*-debug.zip -d extracted-debug
|
unzip module/build/outputs/release/*-debug.zip -d extracted-debug
|
||||||
|
|
||||||
- name: Upload release
|
- name: Upload release
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.prepareArtifact.outputs.releaseName }}
|
name: ${{ steps.prepareArtifact.outputs.releaseName }}
|
||||||
path: "./extracted-release/*"
|
path: "./extracted-release/*"
|
||||||
|
|
||||||
- name: Upload debug
|
- name: Upload debug
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.prepareArtifact.outputs.debugName }}
|
name: ${{ steps.prepareArtifact.outputs.debugName }}
|
||||||
path: "./extracted-debug/*"
|
path: "./extracted-debug/*"
|
||||||
|
|||||||
@@ -103,8 +103,8 @@ public:
|
|||||||
do
|
do
|
||||||
{
|
{
|
||||||
pid_t pid = getpid();
|
pid_t pid = getpid();
|
||||||
ASSERT_DO(invokeZygiskCompanion, write(fd, &pid, sizeof(pid)) == sizeof(pid), break);
|
ASSERT_DO(callbackFunction, write(fd, &pid, sizeof(pid)) == sizeof(pid), break);
|
||||||
ASSERT_DO(invokeZygiskCompanion, read(fd, &result, sizeof(result)) == sizeof(result), break);
|
ASSERT_DO(callbackFunction, read(fd, &result, sizeof(result)) == sizeof(result), break);
|
||||||
} while (false);
|
} while (false);
|
||||||
close(fd);
|
close(fd);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user