diff options
author | Melody Horn <melody@boringcactus.com> | 2024-11-13 20:32:37 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2024-11-13 20:32:37 -0700 |
commit | c38a09eefc060f5026c74de815256658002cf427 (patch) | |
tree | cedcc389e67a71b30cfc27de7e9a0e7ba54c898d /.gitlab-ci.yml | |
parent | d0872a6f4c699b5e4e3401e46aa0b24b4b3997a0 (diff) | |
download | makers-c38a09eefc060f5026c74de815256658002cf427.tar.gz makers-c38a09eefc060f5026c74de815256658002cf427.zip |
use a more recent kernel for testing
apparently 5.11.11 had a use-after-free that gcc now rejects statically. oops !
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bcbb222..12d61ee 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -87,7 +87,7 @@ full-test-linux: - cargo install --path . - mkdir ~/linux - cd ~/linux - - wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.11.11.tar.xz + - wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.171.tar.xz - tar xf linux-*.tar.xz - cd linux-*/ - (makers -p 2>&1 || true) | grep 'Configuration file ".config" not found!' |