Skip to content

Commit

Permalink
update CI OS (#45)
Browse files Browse the repository at this point in the history
* update CI OS

* test
  • Loading branch information
tomkralidis authored Jun 24, 2024
1 parent f6e5ab8 commit a86971a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,16 @@ on: [ push, pull_request ]
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Setup Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies 📦
run: sudo apt-get update -y && sudo apt-get install -y dbus dbus-user-session inkscape
run: |
sudo apt-get update -y
sudo apt-get install -y inkscape
- name: Install requirements 📦
run: |
python3 -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion scripts/wws_manage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ case $1 in
for svg in $SVG_FILES
do
BASENAME=`basename $svg .svg`
dbus-run-session inkscape -f $svg -e $PNG_DIR/$BASENAME.png --g-fatal-warnings -l
inkscape --export-type=png --export-filename=$PNG_DIR/$BASENAME.png $svg -l
status=$?
if [ $status -ne 0 ]; then
COUNTER=$((COUNTER+1))
Expand Down

0 comments on commit a86971a

Please sign in to comment.