Skip to content

Commit

Permalink
Fix pybuild testing script and workflow (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbasu committed Jul 10, 2024
1 parent 777a5a2 commit 76ce8e0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
language: [ 'python' ]
Expand All @@ -34,8 +34,8 @@ jobs:

- name: install-deps
run: |
sudo apt install gettext gir1.2-gtk-3.0 gir1.2-xapp-1.0 python3 python3-apt \
sudo apt install gettext gir1.2-gtk-3.0 python3-build python3-setuptools python3 python3-apt \
python3-aptdaemon.gtk3widgets python3-gi python3-configobj python3-setproctitle
- name: make
run: ./test/test -qq
run: ./test/test
6 changes: 5 additions & 1 deletion test/test
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/bash
sudo pip3 install . -qq

set -x
python3 -m build
sudo pip3 install -v ./dist/leaptime_manager-*.whl
leaptime-manager -V
set +x

0 comments on commit 76ce8e0

Please sign in to comment.