File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 13
13
update-environment : false
14
14
- name : Install dependencies
15
15
shell : bash
16
- run : ${{ steps.cs-install-python.outputs.python-path }} -m pip install -r ${GITHUB_ACTION_PATH}/../scripts/configuration/requirements.txt
16
+ run : |
17
+ install_dir=$(dirname $(dirname "${{ steps.cs-install-python.outputs.python-path }}"))
18
+ if [[ -z "$LD_LIBRARY_PATH" ]]; then
19
+ export LD_LIBRARY_PATH="$install_dir/lib"
20
+ else
21
+ export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$install_dir/lib"
22
+ fi
23
+ ${{ steps.cs-install-python.outputs.python-path }} -m pip install -r ${GITHUB_ACTION_PATH}/../scripts/configuration/requirements.txt
17
24
- name : Process files
18
25
shell : bash
19
26
run : ${{ steps.cs-install-python.outputs.python-path }} ${GITHUB_ACTION_PATH}/../scripts/configuration/process_coding_standards_config.py
You can’t perform that action at this time.
0 commit comments