Skip to content

Commit

Permalink
fix(ci): Continue if a linux build fails
Browse files Browse the repository at this point in the history
  • Loading branch information
bdlukaa committed Mar 5, 2024
1 parent 9de1af6 commit 599d83d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ jobs:
flutter build linux --verbose --dart-define-from-file=linux/env/rpm.json
- name: Build RPM Package
continue-on-error: true
run: |
mkdir -p linux/debian/usr/bin
cp -fr build/linux/x64/release/bundle linux/debian/usr/share/bluecherry_client
Expand All @@ -256,6 +257,7 @@ jobs:
ln -sr linux/debian/usr/share/bluecherry_client/bluecherry_client linux/debian/usr/bin/bluecherry_client
- name: Build DEB Package
continue-on-error: true
run: |
dpkg-deb --build --root-owner-group linux/debian
cp linux/*.deb bluecherry-linux-x86_64.deb
Expand All @@ -273,6 +275,7 @@ jobs:
ln -sr linux/debian/usr/share/bluecherry_client/bluecherry_client linux/debian/usr/bin/bluecherry_client
- name: Build Tarball
continue-on-error: true
run: |
mkdir -p AppDir/
cp -r linux/debian/usr AppDir/
Expand All @@ -290,6 +293,7 @@ jobs:
flutter build linux --verbose --dart-define-from-file=linux/env/appimage.json
- name: Build AppImage
continue-on-error: true
run: |
sudo pip3 install git+https://github.com/AppImageCrafters/appimage-builder.git
appimage-builder --skip-tests
Expand Down

0 comments on commit 599d83d

Please sign in to comment.