chore: Update workflows to include check-release job in alpha.yml

This commit is contained in:
Mauro Balades
2024-08-02 15:07:14 +02:00
parent 3b5e401899
commit e32d9cad92
6 changed files with 13 additions and 8 deletions

View File

@@ -128,7 +128,7 @@ jobs:
permissions:
contents: write
runs-on: ubuntu-latest
needs: [build-data]
needs: [build-data, check-release]
steps:
- name: Install Node.js

View File

@@ -13,6 +13,7 @@ on:
jobs:
windows-profile-build:
name: Windows Profile Build - ${{ matrix.generic == true && 'generic' || 'specific' }}
strategy:
fail-fast: false
matrix:

View File

@@ -25,8 +25,6 @@ if test "$SURFER_COMPAT" = "true"; then
export CXXFLAGS="-O3 -march=x86-64-v3"
export LDFLAGS="-Wl,-O3 -march=x86-64-v3"
export RUSTFLAGS="-C target-feature=+avx2 -C codegen-units=1"
ac_add_options --enable-linker=ld64
else
ac_add_options --target=aarch64-apple-darwin

View File

@@ -36,9 +36,9 @@ ac_add_options --enable-wasm-avx
if test "$SURFER_COMPAT" = "true"; then
ac_add_options --enable-optimize="-O3 -mavx -maes"
export CFLAGS="-O3 -mavx -maes"
export CPPFLAGS="-O3 -mavx -maes"
export CXXFLAGS="-O3 -mavx -maes"
export CFLAGS="-mavx -maes"
export CPPFLAGS="-mavx -maes"
export CXXFLAGS="-mavx -maes"
export LDFLAGS="-Wl,-O3"
export RUSTFLAGS="-C target-feature=+avx -C codegen-units=1"
else

View File

@@ -884,3 +884,9 @@ panelmultiview {
}
}
}
/* Window controls */
#titlebar-buttonbox-container {
padding-right: 10px;
}

View File

@@ -33,10 +33,10 @@
},
"archives": {
"windows": "windows.mar",
"macos-aarch64": "macos.mar",
"macos-aarch64": "macos-aarch64.mar",
"linux": "linux.mar",
"macos-x64": "macos-intel.mar",
"macos-x64": "macos-x64.mar",
"windows-compat": "windows-generic.mar",
"linux-compat": "linux-generic.mar"
}