name the workflow and remove the hacky solution #3546
Workflow file for this run
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
name: Analysis of Endpoint Connections | |
on: | |
workflow_dispatch: | |
push: | |
# Hacky workaround to prevent weired grouping together of workflows H2 Tests, Junit Results and Java Architecture Tests | |
# This is a workaround for the issue that the workflows are grouped together in the Actions tab, but it does not work | |
#concurrency: | |
# group: analysisOfEndpointConnections-${{ github.run_id }} | |
# cancel-in-progress: false | |
# Keep in sync with build.yml and test.yml and codeql-analysis.yml | |
env: | |
CI: true | |
node: 20 | |
java: 21 | |
jobs: | |
Parse-rest-calls-and-endpoints: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '${{ env.java }}' | |
distribution: 'temurin' | |
- name: Set up node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '${{ env.node }}' | |
- name: Parse client sided REST-API calls | |
run: | | |
npm install | |
tsc -p supporting_scripts/analysis-of-endpoint-connections/src/main/typeScript/tsconfig.analysisOfEndpointConnections.json | |
node supporting_scripts/analysis-of-endpoint-connections/src/main/typeScript/AnalysisOfEndpointConnectionsClient.js | |
- name: Parse server sided Endpoints | |
run: ./gradlew :supporting_scripts:analysis-of-endpoint-connections:runEndpointParser | |
- name: Upload parsing results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: parsing results | |
path: | | |
supporting_scripts/analysis-of-endpoint-connections/endpoints.json | |
supporting_scripts/analysis-of-endpoint-connections/restCalls.json | |
Analysis-of-endpoint-connections: | |
needs: Parse-rest-calls-and-endpoints | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '${{ env.java }}' | |
- name: Download JSON files | |
uses: actions/download-artifact@v4 | |
with: | |
name: parsing results | |
path: supporting_scripts/analysis-of-endpoint-connections/ | |
- name: Analyze endpoints | |
run: | |
./gradlew :supporting_scripts:analysis-of-endpoint-connections:runEndpointAnalysis | |
- name: Analyze rest calls | |
run: | |
./gradlew :supporting_scripts:analysis-of-endpoint-connections:runRestCallAnalysis | |
- name: Upload analysis results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: analysis results | |
path: | | |
supporting_scripts/analysis-of-endpoint-connections/endpointAnalysisResult.json | |
supporting_scripts/analysis-of-endpoint-connections/restCallAnalysisResult.json |