Skip to content

Commit 6ccc595

Browse files
committed
Disable AppImage builds.
1 parent 3a27cbc commit 6ccc595

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ jobs:
2727
backend:
2828
- "macOS-Xcode"
2929
- "macOS-app"
30-
- "linux-appimage"
30+
# AppImage builds (a) take over an hour, because the need to compile Numpy and
31+
# Pandas from source, and (b) are only here as a light validation that
32+
# Standalone Python is working. A Flatpak build also validates this, but
33+
# completes in minutes.
34+
# - "linux-appimage"
3135
- "linux-flatpak"
3236
- "windows-VisualStudio"
3337
- "windows-app"
@@ -54,10 +58,10 @@ jobs:
5458
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"
5559
briefcase-target: "linux system"
5660

57-
- backend: linux-appimage
58-
runs-on: ubuntu-latest
59-
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"
60-
briefcase-target: "linux appimage"
61+
# - backend: linux-appimage
62+
# runs-on: ubuntu-latest
63+
# 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"
64+
# briefcase-target: "linux appimage"
6165

6266
- backend: linux-flatpak
6367
runs-on: ubuntu-latest

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ linuxdeploy_plugins = [
9595
dockerfile_extra_content = """
9696
# Install Rust (required for cryptography)
9797
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
98-
# Set up C++ compiler (required for numpy)
98+
# Set up compilers (required for numpy)
9999
ENV CXX="g++ -pthread"
100100
ENV AR=ar
101101
# Add a symlink for python->python3 (needed for pandas)

0 commit comments

Comments
 (0)