Update rust version and fix installation script in linux-release-build.yml

This commit is contained in:
mr. M
2024-10-27 08:05:53 +01:00
parent 0d609d9e2c
commit 3a22456032
3 changed files with 13 additions and 9 deletions

View File

@@ -98,8 +98,8 @@ jobs:
- name: Fix rust version
run: |
# Install a rust version compatible with LLVM 19
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
# Install a rust version compatible with LLVM 18
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.79
source $HOME/.cargo/env
- name: Import

View File

@@ -63,6 +63,10 @@ jobs:
run: |
git config --global core.safecrlf false
pnpm surfer download
- name: Import patches
run: pnpm surfer import
- name: Generate
run: |
ls

View File

@@ -200,11 +200,11 @@
top: 0;
left: 0;
pointer-events: none;
margin: 10px;
margin: var(--panel-padding);
box-shadow: 0 0 0 1px 1px var(--zen-colors-border);
width: calc(100% - 20px);
height: calc(100% - 20px);
border-radius: calc(var(--zen-border-radius) + 5px);
width: calc(100% - var(--panel-padding) * 2);
height: calc(100% - var(--panel-padding) * 2);
border-radius: var(--zen-border-radius);
}
&::after {
@@ -218,9 +218,9 @@
position: absolute;
top: 0;
left: 0;
margin: 10px;
width: calc(100% - 20px);
height: calc(100% - 20px);
margin: var(--panel-padding);
width: calc(100% - var(--panel-padding) * 2);
height: calc(100% - var(--panel-padding) * 2);
opacity: 0.1;
}