Add platform-specific packaging workflow#110
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting
| - name: Install system dependencies (Linux) | ||
| if: runner.os == 'Linux' | ||
| run: | | ||
| sudo apt-get update | ||
| sudo apt-get install --no-install-recommends -y rpm libarchive-tools libfuse2 |
There was a problem hiding this comment.
Linux packaging job installs non‑existent libfuse2 on ubuntu‑latest
The new workflow unconditionally installs libfuse2 before packaging. ubuntu-latest runners now use Ubuntu 24.04 where the package was renamed to libfuse2t64, so apt-get install --no-install-recommends -y rpm libarchive-tools libfuse2 exits with “Unable to locate package libfuse2” and the entire Linux matrix (x64/arm64/armv7l) fails before any build occurs. Consider installing libfuse2t64 or falling back when libfuse2 is unavailable so the workflow runs on current runners.
Useful? React with 👍 / 👎.
Summary
Testing
https://chatgpt.com/codex/tasks/task_e_68f2684d8aec8332ab0f61be2f64b940