Skip to content

Commit

Permalink
Update build process to include installation of python-is-python3 pac…
Browse files Browse the repository at this point in the history
…kage in build.py
  • Loading branch information
quintenvandamme committed Apr 26, 2024
1 parent dc6f5e0 commit 6d76821
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 34 deletions.
34 changes: 1 addition & 33 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,36 +29,4 @@ jobs:
with:
artifacts: "./out/*"
allowUpdates: true
tag: "continious-build"

Linux_aarch64:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2
name: Run commands
id: runcmd
with:
arch: aarch64
distro: ubuntu_latest

githubToken: ${{ github.token }}

setup: |
sudo apt-get update -q -y
sudo apt-get install -q -y desktop-file-utils python3 python-is-python3
run: |
echo "Running on aarch64"
- name: Build TV Downloader
run: |
$(which python3) build.py build
- name: Upload Binary
uses: ncipollo/release-action@v1
with:
artifacts: "./out/*"
allowUpdates: true
tag: "continious-build"
tag: "continious-build"
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def _get_ffmpeg():

def install_dependencies():
print("=> Installing dependencies...")
_run_command("pip install -r requirements.txt")
_run_command("pip install -r requirements.txt --break-system-packages")

def clean():
print("=> Cleaning up...")
Expand Down

0 comments on commit 6d76821

Please sign in to comment.