Compare commits

..

5 Commits

Author SHA1 Message Date
KeatonTheBot
8bc1c54cf1 nuget: bump Microsoft.IdentityModel.JsonWebTokens from 8.2.1 to 8.3.0 2025-01-12 14:20:18 -06:00
KeatonTheBot
6e754ebc3f nuget: bump SkiaSharp group, Microsoft.IdentityModel.JsonWebTokens
* Bump SkiaSharp group from 2.88.8 to 2.88.9

* Bump Microsoft.IdentityModel.JsonWebTokens from 8.2.0 to 8.2.1
2025-01-12 14:20:18 -06:00
KeatonTheBot
e687010037 nuget: roll back Ryujinx.Graphics.Vulkan.Dependencies.MoltenVK from 1.2.3 to 1.2.0 2025-01-12 14:20:18 -06:00
KeatonTheBot
e15f42044f nuget: bump non-avalonia packages
* Bump Concentus from 2.2.0 to 2.2.2

* Bump Microsoft.IdentityModel.JsonWebTokens from 8.1.2 to 8.2.0

* Bump Ryujinx.Graphics.Vulkan.Dependencies.MoltenVK from 1.2.0 to 1.2.3

* Bump Silk.NET.Vulkan group with 3 updates (2.21.0 to 2.22.0)

* Bump SkiaSharp group with 2 updates (2.88.7 to 2.88.8)
2025-01-12 14:20:18 -06:00
KeatonTheBot
470c3d34c4 nuget: bump the avalonia group with 7 updates 2025-01-12 14:20:18 -06:00
7 changed files with 12 additions and 12 deletions

View File

@@ -129,11 +129,11 @@ jobs:
with:
global-json-file: global.json
- name: Setup LLVM 17
- name: Setup LLVM 14
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 17
sudo ./llvm.sh 14
- name: Install rcodesign
run: |

View File

@@ -210,11 +210,11 @@ jobs:
with:
global-json-file: global.json
- name: Setup LLVM 17
- name: Setup LLVM 15
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 17
sudo ./llvm.sh 15
- name: Install rcodesign
run: |

View File

@@ -191,11 +191,11 @@ jobs:
with:
global-json-file: global.json
- name: Setup LLVM 17
- name: Setup LLVM 15
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 17
sudo ./llvm.sh 15
- name: Install rcodesign
run: |

View File

@@ -19,7 +19,7 @@ if platform.system() == "Darwin":
else:
OTOOL = shutil.which("llvm-otool")
if OTOOL is None:
for llvm_ver in [17, 16, 15, 14, 13]:
for llvm_ver in [15, 14, 13]:
otool_path = shutil.which(f"llvm-otool-{llvm_ver}")
if otool_path is not None:
OTOOL = otool_path

View File

@@ -26,7 +26,7 @@ else:
LIPO = shutil.which("llvm-lipo")
if LIPO is None:
for llvm_ver in [17, 16, 15, 14, 13]:
for llvm_ver in [15, 14, 13]:
lipo_path = shutil.which(f"llvm-lipo-{llvm_ver}")
if lipo_path is not None:
LIPO = lipo_path

View File

@@ -67,11 +67,11 @@ python3 "$BASE_DIR/distribution/macos/construct_universal_dylib.py" "$ARM64_APP_
if ! [ -x "$(command -v lipo)" ];
then
if ! [ -x "$(command -v llvm-lipo-17)" ];
if ! [ -x "$(command -v llvm-lipo-14)" ];
then
LIPO=llvm-lipo
else
LIPO=llvm-lipo-17
LIPO=llvm-lipo-14
fi
else
LIPO=lipo

View File

@@ -62,11 +62,11 @@ python3 "$BASE_DIR/distribution/macos/construct_universal_dylib.py" "$ARM64_OUTP
if ! [ -x "$(command -v lipo)" ];
then
if ! [ -x "$(command -v llvm-lipo-17)" ];
if ! [ -x "$(command -v llvm-lipo-14)" ];
then
LIPO=llvm-lipo
else
LIPO=llvm-lipo-17
LIPO=llvm-lipo-14
fi
else
LIPO=lipo