File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 42
42
conda config --set always_yes yes
43
43
--set changeps1 no
44
44
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'
46
56
run : |
47
57
conda install --file requirements/test.txt
48
58
pip install -r requirements/pip.txt
Original file line number Diff line number Diff line change 32
32
conda config --set always_yes yes
33
33
--set changeps1 no
34
34
35
+ - name : Install libgtk for Linux
36
+ run : |
37
+ sudo apt-get update
38
+ sudo apt-get install -y libgtk-3-dev
39
+
35
40
- name : Install diffpy.labpdfproc and requirements
36
41
run : |
37
42
conda install --file requirements/test.txt
You can’t perform that action at this time.
0 commit comments