Skip to content

Commit

Permalink
Disable AppImage builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Sep 5, 2023
1 parent 3a27cbc commit 6ccc595
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ jobs:
backend:
- "macOS-Xcode"
- "macOS-app"
- "linux-appimage"
# AppImage builds (a) take over an hour, because the need to compile Numpy and
# Pandas from source, and (b) are only here as a light validation that
# Standalone Python is working. A Flatpak build also validates this, but
# completes in minutes.
# - "linux-appimage"
- "linux-flatpak"
- "windows-VisualStudio"
- "windows-app"
Expand All @@ -54,10 +58,10 @@ jobs:
pre-command: "sudo apt-get update -y && sudo apt-get install -y python3-gi python3-gi-cairo gir1.2-gtk-3.0 python3-dev libgirepository1.0-dev libcairo2-dev pkg-config"
briefcase-target: "linux system"

- backend: linux-appimage
runs-on: ubuntu-latest
pre-command: "sudo apt-get update -y && sudo apt-get install -y python3-gi python3-gi-cairo gir1.2-gtk-3.0 python3-dev libgirepository1.0-dev libcairo2-dev pkg-config libfuse2"
briefcase-target: "linux appimage"
# - backend: linux-appimage
# runs-on: ubuntu-latest
# pre-command: "sudo apt-get update -y && sudo apt-get install -y python3-gi python3-gi-cairo gir1.2-gtk-3.0 python3-dev libgirepository1.0-dev libcairo2-dev pkg-config libfuse2"
# briefcase-target: "linux appimage"

- backend: linux-flatpak
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ linuxdeploy_plugins = [
dockerfile_extra_content = """
# Install Rust (required for cryptography)
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
# Set up C++ compiler (required for numpy)
# Set up compilers (required for numpy)
ENV CXX="g++ -pthread"
ENV AR=ar
# Add a symlink for python->python3 (needed for pandas)
Expand Down

0 comments on commit 6ccc595

Please sign in to comment.