From eece901ade750232124f8ec18de6a34bdee86eb9 Mon Sep 17 00:00:00 2001 From: Julian Stecklina Date: Sun, 31 Mar 2024 19:02:36 +0200 Subject: [PATCH] Test linux_6_8 environment --- .github/workflows/test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..ce76509 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,14 @@ +name: "Test" +on: + pull_request: + push: +jobs: + linux_6_8: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: cachix/install-nix-action@v25 + - run: git clone --depth 1 --branch v6.8 https://github.com/gregkh/linux.git + - run: nix develop .#linux_6_8 -command bash -c "cd linux && make rustavailable && make defconfig && make -j$(nproc) bzImage" + - run: git -C linux -fdx + - run: nix develop .#linux_6_8_gcc --command bash -c "cd linux && make defconfig && make -j$(nproc) bzImage"