fix emulators

This commit is contained in:
Clément DOUIN
2024-11-25 15:21:16 +01:00
parent 025eebb549
commit b22aa9dcb0
2 changed files with 5 additions and 4 deletions
+3 -3
View File
@@ -10,9 +10,9 @@ jobs:
fail-fast: false
matrix:
include:
- system: aarch64-macos
target: aarch64-apple-darwin
os: macos-latest
# - system: aarch64-macos
# target: aarch64-apple-darwin
# os: macos-latest
# - system: aarch64-linux
# target: aarch64-unknown-linux-musl
# os: ubuntu-latest
+2 -1
View File
@@ -21,11 +21,12 @@
i686-w64-mingw32 = {
rustTarget = "i686-pc-windows-gnu";
emulator = pkgs: "${pkgs.wine}/bin/wine";
emulator = { lib, winePackages, ... }: lib.getExe' winePackages.minimal "wine";
};
x86_64-apple-darwin = {
rustTarget = "x86_64-apple-darwin";
emulator = _: "";
};
x86_64-unknown-linux-musl = {