Skip to content

Commit

Permalink
Adjust CI dependency installs and parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Davidy22 committed Jan 7, 2025
1 parent ac85ab8 commit 2197650
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ jobs:
sudo apt update -q
yes | sudo ./scripts/bootstrap-dev-debian.sh
./scripts/bootstrap-dev-pip.sh system
#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
export DISPLAY=:99.0
Expand Down Expand Up @@ -87,6 +86,7 @@ jobs:
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verify_metadata: false
verify-metadata: false
verbose: true
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
repository-url: https://test.pypi.org/legacy/
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ jobs:
sudo apt update -q
yes | sudo ./scripts/bootstrap-dev-debian.sh
./scripts/bootstrap-dev-pip.sh system
#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
export DISPLAY=:99.0
Expand Down Expand Up @@ -70,13 +69,13 @@ jobs:
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verify_metadata: false
verify-metadata: false
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
repository-url: https://test.pypi.org/legacy/

- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
verify_metadata: false
verify-metadata: false
password: ${{ secrets.PYPI_API_TOKEN }}
7 changes: 5 additions & 2 deletions scripts/bootstrap-dev-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,16 @@ if [[ $RUN == "1" ]]; then
libutempter0 \
python3 \
python3-cairo \
python3-dev \
python3-dbus \
python3-gi \
python3-setuptools-scm \
python3-pip \
libgirepository1.0-dev
libgirepository1.0-dev \
libcairo2-dev \
pkg-config
fi

if [[ $MAKE == "1" ]]; then
echo "Install packages needed for making guake"
sudo apt-get install --no-install-recommends -y \
Expand Down

0 comments on commit 2197650

Please sign in to comment.