2022-01-12 19:12:11 +03:00
|
|
|
name: "Analysis"
|
|
|
|
|
|
|
|
on:
|
2022-05-23 11:11:36 +03:00
|
|
|
pull_request:
|
2022-01-12 19:12:11 +03:00
|
|
|
branches: [ master, stable-* ]
|
2022-01-24 17:27:40 +03:00
|
|
|
push:
|
|
|
|
branches: [ master, stable-* ]
|
2022-01-12 19:12:11 +03:00
|
|
|
|
2022-06-10 09:03:43 +03:00
|
|
|
permissions:
|
|
|
|
pull-requests: write
|
|
|
|
contents: write
|
|
|
|
|
2023-06-08 14:53:06 +03:00
|
|
|
concurrency:
|
|
|
|
group: analysis-wrapper-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-01-12 19:12:11 +03:00
|
|
|
jobs:
|
|
|
|
analysis:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-05-31 11:07:03 +03:00
|
|
|
- name: Setup variables
|
|
|
|
id: get-vars
|
|
|
|
run: |
|
|
|
|
if [ -z "$GITHUB_HEAD_REF" ]; then
|
|
|
|
# push
|
2023-06-01 21:15:42 +03:00
|
|
|
echo "branch=$GITHUB_REF_NAME" >> "$GITHUB_OUTPUT"
|
|
|
|
echo "pr=$GITHUB_RUN_ID" >> "$GITHUB_OUTPUT"
|
|
|
|
echo "repo=${{ github.repository }}" >> "$GITHUB_OUTPUT"
|
2022-05-31 11:07:03 +03:00
|
|
|
else
|
|
|
|
# pull request
|
2023-06-01 21:15:42 +03:00
|
|
|
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"
|
2022-05-31 11:07:03 +03:00
|
|
|
fi
|
2023-06-12 14:57:54 +03:00
|
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2022-05-31 11:07:03 +03:00
|
|
|
with:
|
|
|
|
repository: ${{ steps.get-vars.outputs.repo }}
|
|
|
|
ref: ${{ steps.get-vars.outputs.branch }}
|
2023-05-08 19:35:05 +03:00
|
|
|
- name: Set up JDK 17
|
2023-06-01 21:15:42 +03:00
|
|
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
2022-01-26 14:54:24 +03:00
|
|
|
with:
|
|
|
|
distribution: "temurin"
|
2023-05-08 19:35:05 +03:00
|
|
|
java-version: 17
|
2022-04-27 12:03:59 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python3 -m pip install defusedxml
|
2022-01-12 19:12:11 +03:00
|
|
|
- name: Run analysis wrapper
|
2022-05-31 11:07:03 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-01-12 19:12:11 +03:00
|
|
|
run: |
|
|
|
|
mkdir -p $HOME/.gradle
|
|
|
|
echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > $HOME/.gradle/gradle.properties
|
2022-05-31 11:07:03 +03:00
|
|
|
scripts/analysis/analysis-wrapper.sh ${{ steps.get-vars.outputs.branch }} ${{ secrets.LOG_USERNAME }} ${{ secrets.LOG_PASSWORD }} $GITHUB_RUN_NUMBER ${{ steps.get-vars.outputs.pr }}
|