Skip to content

Commit 2197650

Browse files
committed
Adjust CI dependency installs and parameters
1 parent ac85ab8 commit 2197650

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ jobs:
3838
sudo apt update -q
3939
yes | sudo ./scripts/bootstrap-dev-debian.sh
4040
./scripts/bootstrap-dev-pip.sh system
41-
#sudo apt install --no-install-recommends -y xvfb gir1.2-gtk-3.0 python3-gi python3-gi-cairo gir1.2-wnck-3.0 gobject-introspection libgirepository1.0-dev
4241
4342
export DISPLAY=:99.0
4443
@@ -87,6 +86,7 @@ jobs:
8786
- name: Publish distribution 📦 to Test PyPI
8887
uses: pypa/gh-action-pypi-publish@release/v1
8988
with:
90-
verify_metadata: false
89+
verify-metadata: false
90+
verbose: true
9191
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
92-
repository_url: https://test.pypi.org/legacy/
92+
repository-url: https://test.pypi.org/legacy/

.github/workflows/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ jobs:
4040
sudo apt update -q
4141
yes | sudo ./scripts/bootstrap-dev-debian.sh
4242
./scripts/bootstrap-dev-pip.sh system
43-
#sudo apt install --no-install-recommends -y xvfb gir1.2-gtk-3.0 python3-gi python3-gi-cairo gir1.2-wnck-3.0 gobject-introspection libgirepository1.0-dev
4443
4544
export DISPLAY=:99.0
4645
@@ -70,13 +69,13 @@ jobs:
7069
- name: Publish distribution 📦 to Test PyPI
7170
uses: pypa/gh-action-pypi-publish@release/v1
7271
with:
73-
verify_metadata: false
72+
verify-metadata: false
7473
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
75-
repository_url: https://test.pypi.org/legacy/
74+
repository-url: https://test.pypi.org/legacy/
7675

7776
- name: Publish distribution 📦 to PyPI
7877
if: startsWith(github.ref, 'refs/tags')
7978
uses: pypa/gh-action-pypi-publish@release/v1
8079
with:
81-
verify_metadata: false
80+
verify-metadata: false
8281
password: ${{ secrets.PYPI_API_TOKEN }}

scripts/bootstrap-dev-debian.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,16 @@ if [[ $RUN == "1" ]]; then
4444
libutempter0 \
4545
python3 \
4646
python3-cairo \
47+
python3-dev \
4748
python3-dbus \
4849
python3-gi \
4950
python3-setuptools-scm \
5051
python3-pip \
51-
libgirepository1.0-dev
52+
libgirepository1.0-dev \
53+
libcairo2-dev \
54+
pkg-config
5255
fi
53-
56+
5457
if [[ $MAKE == "1" ]]; then
5558
echo "Install packages needed for making guake"
5659
sudo apt-get install --no-install-recommends -y \

0 commit comments

Comments
 (0)