This repository was archived by the owner on May 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
86 lines (76 loc) · 3.28 KB
/
Copy path.gitlab-ci.yml
File metadata and controls
86 lines (76 loc) · 3.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
variables:
DOCKER_TAG_DEV: ${CI_COMMIT_REF_NAME}
DOCKER_IMAGE_DEV: modci-om
stages:
- build
- test
Docker_Build:
stage: build
script:
- git clone https://git.rwth-aachen.de/acs/public/simulation/reference-results.git
- git clone https://git.rwth-aachen.de/acs/public/villas/dataprocessing.git
- git clone https://git.rwth-aachen.de/acs/public/simulation/python-for-modelica.git
- docker build -t ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV} .
artifacts:
paths:
- dataprocessing/
- python-for-modelica/
- reference-results/
tags:
- shell
test:Slack_PiLine_PQLoad:
stage: test
script:
- python3 ./python-for-modelica/Scripts/ModPowerSystemsCI/ValidationBasicGrids.py -p ./ -n ModPowerSystems.PhasorSinglePhase.Examples.BasicGrids.Slack_PiLine_PQLoad -r reference-results/Neplan/BasicGrids/Slack_PiLine_PQLoad.rlf
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
tags:
- docker
test:Slack_RxLine_PQLoad:
stage: test
script:
- python3 ./python-for-modelica/Scripts/ModPowerSystemsCI/ValidationBasicGrids.py -p ./ -n ModPowerSystems.PhasorSinglePhase.Examples.BasicGrids.Slack_RxLine_PQLoad -r reference-results/Neplan/BasicGrids/Slack_RxLine_PQLoad.rlf
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
tags:
- docker
test:Slack_RxLine_PVNode:
stage: test
script:
- python3 ./python-for-modelica/Scripts/ModPowerSystemsCI/ValidationBasicGrids.py -p ./ -n ModPowerSystems.PhasorSinglePhase.Examples.BasicGrids.Slack_RxLine_PVNode -r reference-results/Neplan/BasicGrids/Slack_RxLine_PVNode.rlf
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
tags:
- docker
test:Slack_Tra_Line_PQLoad:
stage: test
script:
- python3 ./python-for-modelica/Scripts/ModPowerSystemsCI/ValidationBasicGrids.py -p ./ -n ModPowerSystems.PhasorSinglePhase.Examples.BasicGrids.Slack_Tra_Line_PQLoad -r reference-results/Neplan/BasicGrids/Slack_Tra_Line_PQLoad.rlf
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
tags:
- docker
test:Slack_TraTapChanger_PQLoad:
stage: test
script:
- python3 ./python-for-modelica/Scripts/ModPowerSystemsCI/ValidationBasicGrids.py -p ./ -n ModPowerSystems.PhasorSinglePhase.Examples.BasicGrids.Slack_TraTapChanger_PQLoad -r reference-results/Neplan/BasicGrids/Slack_TraTapChanger_Load_Sample.rlf
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
tags:
- docker
test:Slack_ZLoad:
stage: test
script:
- python3 ./python-for-modelica/Scripts/ModPowerSystemsCI/ValidationBasicGrids.py -p ./ -n ModPowerSystems.PhasorSinglePhase.Examples.BasicGrids.Slack_ZLoad -r reference-results/Neplan/BasicGrids/Slack_ZLoad.rlf
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
tags:
- docker
test:WSCC_9Bus_PQLoad:
stage: test
script:
- python3 ./python-for-modelica/Scripts/ModPowerSystemsCI/ValidationBasicGrids.py -p ./ -n ModPowerSystems.PhasorSinglePhase.Examples.ReferenceGrids.WSCC_9Bus_PQLoad -r reference-results/Simulink/WSCC-9bus/WSCC_9bus_steadystate.rep
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
tags:
- docker
test:IEEE_European_LV_HouseholdLoad:
stage: test
script:
- python3 ./python-for-modelica/Scripts/ModPowerSystemsCI/ValidationBasicGrids.py -p ./ -n ModPowerSystems.PhasorSinglePhase.Examples.ReferenceGrids.IEEE_European_LV_HouseholdLoad -r reference-results/Neplan/ReferenceGrids/IEEE_EU_LV_noTransformer.rlf
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
tags:
- docker