-
-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andy Scherzinger <[email protected]>
- Loading branch information
1 parent
2051588
commit 9fdc1c2
Showing
11 changed files
with
369 additions
and
77 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,49 @@ | ||
name: "Analysis" | ||
|
||
on: | ||
pull_request: | ||
branches: [ master, stable-* ] | ||
push: | ||
branches: [ master, stable-* ] | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: write | ||
|
||
jobs: | ||
analysis: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup variables | ||
id: get-vars | ||
run: | | ||
if [ -z "$GITHUB_HEAD_REF" ]; then | ||
# push | ||
echo "::set-output name=branch::$GITHUB_REF_NAME" | ||
echo "::set-output name=pr::$GITHUB_RUN_ID" | ||
echo "::set-output name=repo::${{ github.repository }}" | ||
else | ||
# pull request | ||
echo "::set-output name=branch::$GITHUB_HEAD_REF" | ||
echo "::set-output name=pr::${{ github.event.pull_request.number }}" | ||
echo "::set-output name=repo::${{ github.event.pull_request.head.repo.full_name }}" | ||
fi | ||
- uses: actions/checkout@v3 | ||
with: | ||
repository: ${{ steps.get-vars.outputs.repo }} | ||
ref: ${{ steps.get-vars.outputs.branch }} | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: "temurin" | ||
java-version: 11 | ||
- 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
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
Oops, something went wrong.