File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 4242 conda config --set always_yes yes
4343 --set changeps1 no
4444
45- - name : Install diffpy.labpdfproc and requirements
45+ - name : Install diffpy.labpdfproc and requirements for Linux
46+ if : runner.os == 'Linux'
47+ run : |
48+ sudo apt-get update
49+ sudo apt-get install -y libgtk-3-dev
50+ conda install --file requirements/test.txt
51+ pip install -r requirements/pip.txt
52+ python -m pip install . --no-deps
53+
54+ - name : Install diffpy.labpdfproc and requirements for non-Linux
55+ if : runner.os != 'Linux'
4656 run : |
4757 conda install --file requirements/test.txt
4858 pip install -r requirements/pip.txt
Original file line number Diff line number Diff line change 3232 conda config --set always_yes yes
3333 --set changeps1 no
3434
35+ - name : Install libgtk for Linux
36+ run : |
37+ sudo apt-get update
38+ sudo apt-get install -y libgtk-3-dev
39+
3540 - name : Install diffpy.labpdfproc and requirements
3641 run : |
3742 conda install --file requirements/test.txt
You can’t perform that action at this time.
0 commit comments