mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-18 19:19:33 +01:00
Trying to fix https://github.com/nextcloud/android-config/pull/248/files which caused that analysis is not only blocked for forks, bit also for merge commits. Solution: If it's not a PR the step should be omitted.. This commit will be checked when workflow runs on github. It will be merged just to test it's working.. Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
80 lines
3.5 KiB
YAML
80 lines
3.5 KiB
YAML
# synced from @nextcloud/android-config
|
|
|
|
# SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-FileCopyrightText: 2025 Alper Ozturk <alper.ozturk@nextcloud.com>
|
|
# SPDX-FileCopyrightText: 2023 Tobias Kaminsky <tobias@kaminsky.me>
|
|
# SPDX-FileCopyrightText: 2023 Andy Scherzinger <info@andy-scherzinger.de>
|
|
# SPDX-FileCopyrightText: 2023 Josh Richards <josh.t.richards@gmail.com>
|
|
# SPDX-FileCopyrightText: 2025 Marcel Hibbe <dev@mhibbe.de>
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
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: Disabled on forks
|
|
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository }}
|
|
run: |
|
|
echo 'Can not analyze PRs from forks'
|
|
exit 1
|
|
- name: Setup variables # zizmor: ignore[template-injection]
|
|
id: get-vars
|
|
run: |
|
|
if [ -z "$GITHUB_HEAD_REF" ]; then
|
|
# push
|
|
{
|
|
echo "branch=$GITHUB_REF_NAME"
|
|
echo "pr=$GITHUB_RUN_ID"
|
|
echo "repo=${{ github.repository }}"
|
|
} >> "$GITHUB_OUTPUT"
|
|
else
|
|
# pull request
|
|
{
|
|
echo "branch=$GITHUB_HEAD_REF"
|
|
echo "pr=${{ github.event.pull_request.number }}"
|
|
echo "repo=${{ github.event.pull_request.head.repo.full_name }}"
|
|
} >> "$GITHUB_OUTPUT"
|
|
fi
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
persist-credentials: false
|
|
repository: ${{ steps.get-vars.outputs.repo }}
|
|
ref: ${{ steps.get-vars.outputs.branch }}
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
|
|
with:
|
|
distribution: "temurin"
|
|
java-version: 17
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt install python3-defusedxml
|
|
- name: Run analysis wrapper
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
mkdir -p "$HOME/.gradle"
|
|
{
|
|
echo "org.gradle.jvmargs=-Xmx6g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:+UseParallelGC -XX:MaxMetaspaceSize=1g"
|
|
echo "org.gradle.caching=true"
|
|
echo "org.gradle.parallel=true"
|
|
echo "org.gradle.configureondemand=true"
|
|
echo "kapt.incremental.apt=true"
|
|
} > "$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 }}"
|