File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ name : PR_testing
2+ on :
3+ # Triggers the workflow on push or pull request events but only for the "main" branch
4+ pull_request :
5+
6+ # Allows you to run this workflow manually from the Actions tab
7+ workflow_dispatch :
8+
9+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
10+ jobs :
11+ prepare :
12+ runs-on : self-hosted
13+ steps :
14+ - name : checkout_pr_repo
15+ run : /home/resimuser/regression_testing/docker/work/run_scripts/prepare_pr.sh ${{ github.event.number }}
16+
17+ testrun_modelica :
18+ needs : prepare
19+ runs-on : self-hosted
20+ environment :
21+ name : link_modelica
22+ url : https://serv.ltx.de/prs/${{ github.event.number }}/Modelica/report/PR_comparison_report.html
23+ steps :
24+ - name : run modelica
25+ run : /home/resimuser/regression_testing/docker/work/run_scripts/run_pr.sh ${{ github.event.number }} ${{ github.event.pull_request.base.sha }} Modelica
26+
27+ testrun_modelicatest :
28+ needs : prepare
29+ runs-on : self-hosted
30+ environment :
31+ name : link_modelicatest
32+ url : https://serv.ltx.de/prs/${{ github.event.number }}/ModelicaTest/report/PR_comparison_report.html
33+ steps :
34+ - name : run modelicatest
35+ run : /home/resimuser/regression_testing/docker/work/run_scripts/run_pr.sh ${{ github.event.number }} ${{ github.event.pull_request.base.sha }} ModelicaTest
You can’t perform that action at this time.
0 commit comments