-
Notifications
You must be signed in to change notification settings - Fork 14
179 lines (151 loc) · 5.19 KB
/
main.yml
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
name: App Tests
on:
push:
# branches:
# - main
# - rel_*
pull_request:
defaults:
run:
# -l: use login shell (required when using Conda)
shell: bash -l {0}
env:
PYTEST_ADDOPTS: --color=yes
jobs:
component_e2e_testing:
name: E2E testing (${{ matrix.os }})
runs-on: ${{ matrix.os-version }}
strategy:
fail-fast: false
matrix:
os:
- linux
- win64
include:
- os: linux
os-version: ubuntu-latest
- os: win64
os-version: windows-latest
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
environment-file: environment.yml
activate-environment: watertap-ui-env
miniforge-version: latest
- name: Set up debug logging
run: |
echo "ACTIONS_RUNNER_DEBUG=true" >> $GITHUB_ENV
echo "ACTIONS_STEP_DEBUG=true" >> $GITHUB_ENV
- name: Add theme to .env file
working-directory: ./electron/ui
run: |
echo REACT_APP_THEME=watertap >> .env
- name: Install Electron JS dependencies
run: |
npm --prefix electron clean-install
- name: Install frontend JS dependencies
run: |
npm --prefix electron/ui clean-install
- name: get idaes extensions
run: idaes get-extensions
- name: Install watertap-ui Python package
run: |
pip install --progress-bar off .
- name: Display installed environment
run: |
conda env export --no-builds
- name: run backend server
run: uvicorn --app-dir backend/app main:app --reload --host 127.0.0.1 --port 8001 & sleep 30
- name: run frontend
run: npm --prefix electron/ui start & sleep 30
- name: run component tests
run: npm --prefix electron/ui run test
- name: Cypress e2e tests
working-directory: electron/ui
timeout-minutes: 45
run: npx cypress run
- name: stop linux services
if: runner.os == 'Linux'
run: fuser -k 3000/tcp && fuser -k 8001/tcp
- name: stop windows services
if: runner.os == 'Windows'
run: |
$ports = @(3000, 8001)
foreach ($port in $ports){
$netTCPConnections = Get-NetTCPConnection -LocalPort $port -ErrorAction SilentlyContinue
if ($netTCPConnections) {
foreach ($netTCPConnection in $netTCPConnections) {
$processId = $netTCPConnection.OwningProcess
Write-Host "Found ID $processId"
$process = Get-Process -Id $processId -ErrorAction SilentlyContinue
if ($process) {
Write-Host "Found valid process $process"
if ($process.Name -notcontains "Idle") {
try {
Write-Host "Attempting to kill ID $processId with name $process.Name."
Stop-Process -Id $process.Id -Force
Write-Host "Process with ID $processId on port $port killed."
} catch {
Write-Host "Failed to kill process with ID $processId - $_"
}
} else {
Write-Host "The process using port $port is the idle process and cannot be terminated."
}
} else {
Write-Host "No process found using port $port."
}
}
} else {
Write-Host "No TCP connection found on port $port."
}
}
shell: pwsh
- name: Upload artifact for screenshots & videos
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress_results-${{ matrix.os }}
path: |
electron/ui/cypress/screenshots/
electron/ui/cypress/videos/
## post-run conda often fails for weird reasons. this is a potential solution
## see https://github.com/conda-incubator/setup-miniconda/issues/277#issuecomment-1431458277
- name: Rename conda package cache
if: runner.os == 'Windows'
shell: bash
run: mv "${CONDA_PKGS_DIR}" "${CONDA_PKGS_DIR}_do_not_cache"
pytest:
name: pytest (${{ matrix.os }})
runs-on: ${{ matrix.os-version }}
strategy:
fail-fast: false
matrix:
os:
- linux
- win64
# - macos
include:
- os: linux
os-version: ubuntu-latest
- os: win64
os-version: windows-latest
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
environment-file: environment.yml
activate-environment: watertap-ui-env
miniforge-version: latest
- name: Install watertap-ui Python package
run: |
pip install --progress-bar off .
- name: Install httpx
run: |
pip install httpx
- name: get idaes extensions
run: idaes get-extensions
- name: Run pytest
working-directory: backend
run: |
pytest tests -v