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: build-deb:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: get-source-code needs: get-source-code
steps:
- name: Download and cache system dependencies - name: Download and cache system dependencies
uses: https://complecwaft.com/catmeow/cache-apt-pkgs-action@latest uses: https://complecwaft.com/catmeow/cache-apt-pkgs-action@latest
with: 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 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 version: 1.0
uses: actions/download-artifact@v3 - name: Download repository code
with: uses: actions/download-artifact@v3
name: source_archive with:
path: . name: source_archive
- name: Extract repository code path: .
run: mkdir -p looper && tar -xf source.tar.zst -C looper - name: Extract repository code
- name: Build package run: mkdir -p looper && tar -xf source.tar.zst -C looper
run: cd looper && gbp buildpackage --git-ignore-new - name: Build package
- name: Upload package artifacts run: cd looper && gbp buildpackage --git-ignore-new
uses: actions/upload-artifact@v3 - name: Upload package artifacts
with: uses: actions/upload-artifact@v3
name: debian-packages with:
path: ./looper*.deb name: debian-packages
path: ./looper*.deb
build-appimage: build-appimage:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: get-source-code needs: get-source-code