Skip to content

Commit a1dba3c

Browse files
authored
Merge pull request #136 from bobleesj/wxpython-build
Install `libgtk` for linux CI runner to build wxpython
2 parents 055b223 + 0806dab commit a1dba3c

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/matrix-and-codecov-on-merge-to-main.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,17 @@ jobs:
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

.github/workflows/tests-on-pr.yml

+5
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ jobs:
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

0 commit comments

Comments
 (0)