-
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔄 synced local '.github/workflows/' with remote 'config/workflows/'
Signed-off-by: nextcloud-android-bot <[email protected]>
- Loading branch information
1 parent
ea8fee8
commit 237b0b8
Showing
4 changed files
with
63 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# synced from @nextcloud/android-config | ||
name: "Analysis" | ||
|
||
on: | ||
pull_request: | ||
branches: [ "master", "main", "stable-*" ] | ||
push: | ||
branches: [ "master", "main", "stable-*" ] | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: write | ||
|
||
concurrency: | ||
group: analysis-wrapper-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
analysis: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup variables | ||
id: get-vars | ||
run: | | ||
if [ -z "$GITHUB_HEAD_REF" ]; then | ||
# push | ||
echo "branch=$GITHUB_REF_NAME" >> "$GITHUB_OUTPUT" | ||
echo "pr=$GITHUB_RUN_ID" >> "$GITHUB_OUTPUT" | ||
echo "repo=${{ github.repository }}" >> "$GITHUB_OUTPUT" | ||
else | ||
# pull request | ||
echo "branch=$GITHUB_HEAD_REF" >> "$GITHUB_OUTPUT" | ||
echo "pr=${{ github.event.pull_request.number }}" >> "$GITHUB_OUTPUT" | ||
echo "repo=${{ github.event.pull_request.head.repo.full_name }}" >> "$GITHUB_OUTPUT" | ||
fi | ||
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | ||
with: | ||
repository: ${{ steps.get-vars.outputs.repo }} | ||
ref: ${{ steps.get-vars.outputs.branch }} | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 | ||
with: | ||
distribution: "temurin" | ||
java-version: 17 | ||
- name: Install dependencies | ||
run: | | ||
python3 -m pip install defusedxml | ||
- name: Run analysis wrapper | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
mkdir -p $HOME/.gradle | ||
echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > $HOME/.gradle/gradle.properties | ||
scripts/analysis/analysis-wrapper.sh ${{ steps.get-vars.outputs.branch }} ${{ secrets.LOG_USERNAME }} ${{ secrets.LOG_PASSWORD }} $GITHUB_RUN_NUMBER ${{ steps.get-vars.outputs.pr }} |
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