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

Allow AppImage verification when explicitly requested #58

Merged
merged 1 commit into from
Oct 24, 2023
Merged
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
21 changes: 11 additions & 10 deletions .github/workflows/app-build-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,16 +257,17 @@ jobs:
# binary dependency issues that it's just not worth the oxygen to keep this thing
# alive.
#
# - name: Build AppImage project
# if: >
# startsWith(inputs.runner-os, 'ubuntu')
# && contains(fromJSON('["", "Linux"]'), inputs.target-platform)
# && contains(fromJSON('["", "AppImage"]'), inputs.target-format)
# run: |
# cd tests/apps/verify-${{ inputs.framework }}
# briefcase create linux AppImage
# briefcase build linux AppImage
# briefcase package linux AppImage --adhoc-sign
# Only runs when target platform and format are explicitly Linux and AppImage.
- name: Build AppImage project
if: >
startsWith(inputs.runner-os, 'ubuntu')
&& contains(fromJSON('["Linux"]'), inputs.target-platform)
&& contains(fromJSON('["AppImage"]'), inputs.target-format)
run: |
cd tests/apps/verify-${{ inputs.framework }}
briefcase create linux AppImage
briefcase build linux AppImage
briefcase package linux AppImage --adhoc-sign

- name: Build Flatpak project
if: >
Expand Down
Loading