mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-20 11:35:48 +00:00
fix: download rustup installer to tmp
This commit is contained in:
parent
ae5556aab6
commit
20beca8f89
1 changed files with 6 additions and 6 deletions
|
@ -24,9 +24,9 @@ cargo:test:
|
|||
- apt-get update
|
||||
- apt-get -t experimental install libgtk-4-dev libadwaita-1-dev libgtksourceview-5-dev libssl-dev -y
|
||||
- apt-get install meson ninja-build git desktop-file-utils gettext libjxl-dev file libusb-dev libusb-1.0-0-dev curl -y
|
||||
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -O rustup.sh
|
||||
- chmod +x rustup.sh
|
||||
- ./rustup.sh -y
|
||||
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -O /tmp/rustup.sh
|
||||
- chmod +x /tmp/rustup.sh
|
||||
- /tmp/rustup.sh -y
|
||||
- rustc --version && cargo --version # Print version info for debugging
|
||||
- meson setup build -Dprefix="$PWD/build/localprefix" -Dprofile=development
|
||||
- ninja -C build
|
||||
|
@ -42,9 +42,9 @@ appimage:
|
|||
- apt-get update
|
||||
- apt-get -t experimental install libgtk-4-dev libadwaita-1-dev libgtksourceview-5-dev libssl-dev -y
|
||||
- apt-get install meson ninja-build git desktop-file-utils gettext libjxl-dev file libusb-dev libusb-1.0-0-dev curl -y
|
||||
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -O rustup.sh
|
||||
- chmod +x rustup.sh
|
||||
- ./rustup.sh -y
|
||||
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -O /tmp/rustup.sh
|
||||
- chmod +x /tmp/rustup.sh
|
||||
- /tmp/rustup.sh -y
|
||||
- bash ./dist/appimage/build_appimage.sh
|
||||
artifacts:
|
||||
paths:
|
||||
|
|
Loading…
Add table
Reference in a new issue