fix wrong apple target name with darwin

This commit is contained in:
Clément DOUIN 2024-11-27 10:13:29 +01:00
parent 74fcc0d44f
commit 4cf8b2ded0
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72
2 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
include:
- target: aarch64-apple
- target: aarch64-darwin
os: macos-14
- target: aarch64-linux
os: ubuntu-latest
@ -23,7 +23,7 @@ jobs:
# FIXME
# - target: i686-windows
# os: ubuntu-latest
- target: x86_64-apple
- target: x86_64-darwin
os: macos-13
- target: x86_64-linux
os: ubuntu-latest

View file

@ -15,13 +15,13 @@
inherit (nixpkgs) lib;
crossSystems = {
aarch64-apple = [
aarch64-darwin = [
"aarch64-apple-darwin"
];
aarch64-linux = [
"aarch64-unknown-linux-musl"
];
x86_64-apple = [
x86_64-darwin = [
"x86_64-apple-darwin"
];
x86_64-linux = [