forked from LSPosed/LSPosed
-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update for mainswitchbar from 1.0.2 to 1.1.0 should be ignored in the future. Co-authored-by: JingMatrix <[email protected]>
- Loading branch information
1 parent
7a69ee2
commit f26d8d3
Showing
10 changed files
with
62 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
groups: | ||
actions: | ||
patterns: | ||
- "*" | ||
- package-ecosystem: gitsubmodule | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
groups: | ||
submodule: | ||
patterns: | ||
- "*" | ||
- package-ecosystem: gradle | ||
directory: "/" | ||
directory: / | ||
schedule: | ||
interval: daily | ||
time: "21:00" | ||
target-branch: master | ||
registries: | ||
- maven-google | ||
- gradle-plugin | ||
groups: | ||
maven-dependencies: | ||
maven: | ||
patterns: | ||
- "*" | ||
|
||
registries: | ||
maven-google: | ||
type: maven-repository | ||
url: "https://dl.google.com/dl/android/maven2/" | ||
gradle-plugin: | ||
type: maven-repository | ||
url: "https://plugins.gradle.org/m2/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,9 +24,9 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: "recursive" | ||
submodules: recursive | ||
fetch-depth: 0 | ||
|
||
- name: Write key | ||
|
@@ -41,38 +41,39 @@ jobs: | |
fi | ||
- name: Checkout libxposed/api | ||
uses: actions/checkout@main | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: libxposed/api | ||
path: libxposed/api | ||
ref: 54582730315ba4a3d7cfaf9baf9d23c419e07006 | ||
|
||
- name: Checkout libxposed/service | ||
uses: actions/checkout@main | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: libxposed/service | ||
path: libxposed/service | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: "temurin" | ||
java-version: "21" | ||
distribution: temurin | ||
java-version: 21 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
gradle-home-cache-cleanup: true | ||
uses: gradle/actions/setup-gradle@v4 | ||
|
||
- name: Grant Execute Permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Setup ninja | ||
uses: seanmiddleditch/gha-setup-ninja@master | ||
uses: seanmiddleditch/gha-setup-ninja@v5 | ||
with: | ||
version: 1.12.0 | ||
version: 1.12.1 | ||
|
||
- name: Setup pnpm | ||
uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9 | ||
version: latest | ||
|
||
- name: Setup ccache | ||
uses: hendrikmuhs/[email protected] | ||
|
@@ -116,39 +117,39 @@ jobs: | |
unzip magisk-loader/release/LSPosed-v*-zygisk-debug.zip -d LSPosed-zygisk-debug | ||
- name: Upload riru release | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ steps.prepareArtifact.outputs.riruReleaseName }} | ||
path: "./LSPosed-riru-release/*" | ||
|
||
- name: Upload riru debug | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ steps.prepareArtifact.outputs.riruDebugName }} | ||
path: "./LSPosed-riru-debug/*" | ||
|
||
- name: Upload zygisk release | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ steps.prepareArtifact.outputs.zygiskReleaseName }} | ||
path: "./LSPosed-zygisk-release/*" | ||
|
||
- name: Upload zygisk debug | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ steps.prepareArtifact.outputs.zygiskDebugName }} | ||
path: "./LSPosed-zygisk-debug/*" | ||
|
||
- name: Upload mappings | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: mappings | ||
path: | | ||
magisk-loader/build/outputs/mapping | ||
app/build/outputs/mapping | ||
- name: Upload symbols | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: symbols | ||
path: build/symbols | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters