Mark as broken on AArch64 #52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CachyOS kernel | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- default.nix | |
- cachyos/config.nix | |
- cachyos/package.nix | |
- cachyos/sources.nix | |
- .github/workflows/cachyos.yml | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
channel: | |
- nixos-24.11 | |
- nixos-unstable | |
name: Build - ${{ matrix.channel }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@v16 | |
with: | |
source-url: https://install.lix.systems/lix/lix-installer-x86_64-linux | |
diagnostic-endpoint: "" | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: drakon64-nixos-cachyos-kernel | |
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
- run: 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 |