Skip to content

Commit

Permalink
Mark as broken on AArch64
Browse files Browse the repository at this point in the history
  • Loading branch information
drakon64 committed Jan 19, 2025
1 parent 2118332 commit ee90c0b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/cachyos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ jobs:
name: drakon64-nixos-cachyos-kernel
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}

- run: nix-build -A linuxPackages_cachyos
- run: cachix pin drakon64-nixos-cachyos-kernel $(cachix watch-exec drakon64-nixos-cachyos-kernel -- nix-build -A linuxPackages_cachyos)
env:
NIX_PATH: nixpkgs=https://github.com/NixOS/nixpkgs/archive/refs/heads/${{ matrix.channel }}.tar.gz

- run: cachix pin drakon64-nixos-cachyos-kernel ${{ matrix.channel }} "$(nix-build -A linuxPackages_cachyos)" --keep-revisions 1
if: ${{ github.ref == 'refs/heads/main' }}
9 changes: 8 additions & 1 deletion cachyos/package.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{ callPackage, buildLinux, ... }:
{
callPackage,
stdenvNoCC,
buildLinux,
...
}:
let
sources = callPackage ./sources.nix { };
in
Expand All @@ -19,4 +24,6 @@ buildLinux {
patch = sources.bore-cachy;
}
];

meta.broken = stdenvNoCC.hostPlatform.isAarch64;
}

0 comments on commit ee90c0b

Please sign in to comment.