Skip to content

Bump default environment to 6.10 #18

Bump default environment to 6.10

Bump default environment to 6.10 #18

Workflow file for this run

name: "Test"
on:
pull_request:
push:
jobs:
linux_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- uses: cachix/cachix-action@v14
with:
name: blitz
- name: Checkout Linux
run: |
git clone --depth 1 --branch ${{ matrix.version.tag }} https:/gregkh/linux.git
- name: Check Devshell
run: |
nix develop .#${{ matrix.version.attribute }} --command bash -c "cd linux && make rustavailable && make defconfig && make -j$(nproc) bzImage"
git -C linux clean -fdx
nix develop .#${{ matrix.version.attribute }}_gcc --command bash -c "cd linux && make defconfig && make -j$(nproc) bzImage"
strategy:
matrix:
version: [
{ tag: v6.8, attribute: linux_6_8 },
{ tag: v6.9-rc6, attribute: linux_6_9 }
]