Fix workflow
Some checks failed
Build / build-gentoo (push) Failing after 1m9s
Build / download-system-deps (push) Successful in 3m41s
Build / get-source-code (push) Successful in 10m47s
Build / build-deb (push) Failing after 5m18s
Build / build-android (push) Has been cancelled
Build / build-windows (push) Has been cancelled
Build / build-appimage (push) Has been cancelled

This commit is contained in:
Zachary Hall 2024-12-18 08:47:57 -08:00
parent 1e7f1e6cf1
commit 942987bbcb

View file

@ -42,24 +42,26 @@ jobs:
build-deb:
runs-on: ubuntu-latest
needs: get-source-code
steps:
- name: Download and cache system dependencies
uses: https://complecwaft.com/catmeow/cache-apt-pkgs-action@latest
with:
packages: debhelper-compat devscripts cmake git python3 libprotobuf-dev protobuf-compiler libsoundtouch-dev libsdl2-dev libsdl2-image-dev qt6-base-dev liburiparser-dev libexpat1-dev libsdbus-c++-dev libsdbus-c++-bin build-essential zstd wget git-buildpackage
- name: Download repository code
uses: actions/download-artifact@v3
with:
name: source_archive
path: .
- name: Extract repository code
run: mkdir -p looper && tar -xf source.tar.zst -C looper
- name: Build package
run: cd looper && gbp buildpackage --git-ignore-new
- name: Upload package artifacts
uses: actions/upload-artifact@v3
with:
name: debian-packages
path: ./looper*.deb
version: 1.0
- name: Download repository code
uses: actions/download-artifact@v3
with:
name: source_archive
path: .
- name: Extract repository code
run: mkdir -p looper && tar -xf source.tar.zst -C looper
- name: Build package
run: cd looper && gbp buildpackage --git-ignore-new
- name: Upload package artifacts
uses: actions/upload-artifact@v3
with:
name: debian-packages
path: ./looper*.deb
build-appimage:
runs-on: ubuntu-latest
needs: get-source-code