Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub actions #54

Merged
merged 2 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ env:

jobs:
build:
# using ubuntu-24.04: Package 'qemu' has no installation candidate
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -44,7 +43,7 @@ jobs:

- name: Prepare
run: |
sudo apt-get update && sudo apt-get install -y qemu binfmt-support qemu-user-static
sudo apt-get update && sudo apt-get install -y qemu-system-arm binfmt-support qemu-user-static
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes

echo "Running pyinstaller"
Expand All @@ -71,6 +70,7 @@ jobs:
mv artifacts/intg-denonavr artifacts/bin
mv artifacts/bin/intg-denonavr artifacts/bin/driver
cp driver.json artifacts/
cp LICENSE artifacts/
echo "ARTIFACT_NAME=uc-intg-${{ env.INTG_NAME }}-${{ env.VERSION }}-aarch64" >> $GITHUB_ENV

- name: Create upload artifact
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-code-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ on:
- 'pyproject.toml'
- 'tox.ini'
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
branches: [ main ]
types: [ opened, synchronize, reopened ]

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

name: Check Python code formatting
steps:
Expand Down