Skip to content
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
7 changes: 6 additions & 1 deletion prqlc/packages/snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,14 @@ icon: web/website/static/img/icon.svg
parts:
rust-deps:
plugin: nil
# `--default-toolchain none` (not just omitting the flag — that would
# install `stable`): the `prqlc` part builds from the source tree, where
# `rust-toolchain.toml` overrides whatever default we set here. Pinning one
# only downloads a second, unused toolchain — and reads as an MSRV
# guarantee the build never actually makes.
override-pull:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
--profile minimal --default-toolchain 1.75.0
--profile minimal --default-toolchain none
prqlc:
plugin: rust
after: [rust-deps]
Expand Down
Loading