-
Notifications
You must be signed in to change notification settings - Fork 735
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/1.4.36' into main
- Loading branch information
Showing
796 changed files
with
12,394 additions
and
3,444 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
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
- run: | | ||
npm install --save-dev @babel/plugin-transform-flow-strip-types | ||
- name: Danger | ||
uses: danger/[email protected].1 | ||
uses: danger/[email protected].2 | ||
with: | ||
args: "--dangerfile tools/danger/dangerfile.js" | ||
env: | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
|
||
# Enrich gradle.properties for CI/CD | ||
env: | ||
GRADLE_OPTS: -Dorg.gradle.jvmargs="-Xmx3072m -Dfile.encoding=UTF-8 -XX:+HeapDumpOnOutOfMemoryError" -Dkotlin.daemon.jvm.options="-Xmx2560m" -Dkotlin.incremental=false | ||
GRADLE_OPTS: -Dorg.gradle.jvmargs="-Xmx3072m -Dfile.encoding=UTF-8 -XX:+HeapDumpOnOutOfMemoryError" -XX:MaxPermSize=512m -Dkotlin.daemon.jvm.options="-Xmx2g" -Dkotlin.incremental=false | ||
CI_GRADLE_ARG_PROPERTIES: --stacktrace -PpreDexEnable=false --max-workers 2 --no-daemon | ||
|
||
jobs: | ||
|
@@ -27,7 +27,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- name: Run knit | ||
run: | | ||
./gradlew knitCheck | ||
./gradlew knitCheck $CI_GRADLE_ARG_PROPERTIES | ||
# Check the project: ktlint, detekt, lint | ||
lint: | ||
|
@@ -41,16 +41,16 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- name: Run ktlint | ||
run: | | ||
./gradlew ktlintCheck --continue | ||
./gradlew ktlintCheck $CI_GRADLE_ARG_PROPERTIES --continue | ||
- name: Run detekt | ||
if: always() | ||
run: | | ||
./gradlew detekt $CI_GRADLE_ARG_PROPERTIES | ||
- name: Run lint | ||
# Not always, if ktlint or detekt fail, avoid running the long lint check. | ||
run: | | ||
./gradlew lintGplayRelease $CI_GRADLE_ARG_PROPERTIES | ||
./gradlew lintFdroidRelease $CI_GRADLE_ARG_PROPERTIES | ||
./gradlew vector-app:lintGplayRelease $CI_GRADLE_ARG_PROPERTIES | ||
./gradlew vector-app:lintFdroidRelease $CI_GRADLE_ARG_PROPERTIES | ||
- name: Upload reports | ||
if: always() | ||
uses: actions/upload-artifact@v3 | ||
|
@@ -66,7 +66,7 @@ jobs: | |
yarn add danger-plugin-lint-report --dev | ||
- name: Danger lint | ||
if: always() | ||
uses: danger/[email protected].1 | ||
uses: danger/[email protected].2 | ||
with: | ||
args: "--dangerfile tools/danger/dangerfile-lint.js" | ||
env: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,32 +142,6 @@ jobs: | |
env: | ||
PROJECT_ID: "PN_kwDOAM0swc2KCw" | ||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
move_threads_issues: | ||
name: A-Threads to Thread board | ||
runs-on: ubuntu-latest | ||
# Skip in forks | ||
if: > | ||
github.repository == 'vector-im/element-android' && | ||
contains(github.event.issue.labels.*.name, 'A-Threads') | ||
steps: | ||
- uses: octokit/[email protected] | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation add_to_project($projectid:ID!,$contentid:ID!) { | ||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) { | ||
projectNextItem { | ||
id | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
contentid: ${{ github.event.issue.node_id }} | ||
env: | ||
PROJECT_ID: "PN_kwDOAM0swc0rRA" | ||
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
||
move_message_bubbles_issues: | ||
name: A-Message-Bubbles to Message bubbles board | ||
runs-on: ubuntu-latest | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Hlavní změny v této verzi: Opravy různých chyb a vylepšení stability. | ||
Úplný seznam změn: https://github.com/vector-im/element-android/releases |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Hlavní změny v této verzi: Opravy různých chyb a vylepšení stability. | ||
Úplný seznam změn: https://github.com/vector-im/element-android/releases |
Oops, something went wrong.