@@ -128,11 +128,12 @@ jobs:
128
128
${{ matrix.install }}
129
129
sudo apt install -y ninja-build python3-venv python3-pip
130
130
131
- - name : Install python requirements for string catalog
131
+ - name : Install python requirements
132
132
run : |
133
133
python3 -m venv ${{github.workspace}}/test_venv
134
134
source ${{github.workspace}}/test_venv/bin/activate
135
135
pip install -r ${{github.workspace}}/tools/requirements.txt
136
+ pip install -r ${{github.workspace}}/requirements.txt
136
137
echo "${{github.workspace}}/test_venv/bin" >> $GITHUB_PATH
137
138
138
139
- name : Restore CPM cache
@@ -214,11 +215,12 @@ jobs:
214
215
${{ matrix.install }}
215
216
sudo apt install -y ninja-build python3-venv python3-pip
216
217
217
- - name : Install python requirements for string catalog
218
+ - name : Install python requirements
218
219
run : |
219
220
python3 -m venv ${{github.workspace}}/test_venv
220
221
source ${{github.workspace}}/test_venv/bin/activate
221
222
pip install -r ${{github.workspace}}/tools/requirements.txt
223
+ pip install -r ${{github.workspace}}/requirements.txt
222
224
echo "${{github.workspace}}/test_venv/bin" >> $GITHUB_PATH
223
225
224
226
- name : Restore CPM cache
@@ -341,11 +343,12 @@ jobs:
341
343
${{ matrix.install }}
342
344
sudo apt install -y ninja-build python3-venv python3-pip
343
345
344
- - name : Install python requirements for string catalog
346
+ - name : Install python requirements
345
347
run : |
346
348
python3 -m venv ${{github.workspace}}/test_venv
347
349
source ${{github.workspace}}/test_venv/bin/activate
348
350
pip install -r ${{github.workspace}}/tools/requirements.txt
351
+ pip install -r ${{github.workspace}}/requirements.txt
349
352
echo "${{github.workspace}}/test_venv/bin" >> $GITHUB_PATH
350
353
351
354
- name : Restore CPM cache
@@ -394,11 +397,12 @@ jobs:
394
397
run : |
395
398
sudo apt update && sudo apt install -y gcc-${{env.DEFAULT_GCC_VERSION}} g++-${{env.DEFAULT_GCC_VERSION}} ninja-build python3-venv python3-pip valgrind
396
399
397
- - name : Install python requirements for string catalog
400
+ - name : Install python requirements
398
401
run : |
399
402
python3 -m venv ${{github.workspace}}/test_venv
400
403
source ${{github.workspace}}/test_venv/bin/activate
401
404
pip install -r ${{github.workspace}}/tools/requirements.txt
405
+ pip install -r ${{github.workspace}}/requirements.txt
402
406
echo "${{github.workspace}}/test_venv/bin" >> $GITHUB_PATH
403
407
404
408
- name : Restore CPM cache
0 commit comments