mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-26 22:36:02 +01:00
CI: build on Ubuntu noble
This commit is contained in:
parent
5a04220291
commit
385b797986
1 changed files with 36 additions and 0 deletions
|
@ -152,3 +152,39 @@ test:ubuntu-jammy:
|
||||||
except:
|
except:
|
||||||
- tags
|
- tags
|
||||||
|
|
||||||
|
# Ubuntu 24.04 LTS (noble)
|
||||||
|
build:ubuntu-noble:
|
||||||
|
tags:
|
||||||
|
- pwmt
|
||||||
|
stage: build
|
||||||
|
image: registry.pwmt.org/pwmt/gitlab-runner-images/ubuntu:noble
|
||||||
|
script:
|
||||||
|
- meson subprojects update
|
||||||
|
- mkdir -p build && cd build
|
||||||
|
- meson --force-fallback-for=girara ..
|
||||||
|
- ninja
|
||||||
|
cache:
|
||||||
|
<<: *girara_cache
|
||||||
|
artifacts:
|
||||||
|
expire_in: 6 hours
|
||||||
|
paths:
|
||||||
|
- build
|
||||||
|
except:
|
||||||
|
- tags
|
||||||
|
|
||||||
|
test:ubuntu-noble:
|
||||||
|
tags:
|
||||||
|
- pwmt
|
||||||
|
stage: test
|
||||||
|
image: registry.pwmt.org/pwmt/gitlab-runner-images/ubuntu:noble
|
||||||
|
script:
|
||||||
|
- cd build
|
||||||
|
- ninja test
|
||||||
|
cache:
|
||||||
|
<<: *girara_cache
|
||||||
|
policy: pull
|
||||||
|
dependencies:
|
||||||
|
- build:ubuntu-noble
|
||||||
|
except:
|
||||||
|
- tags
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue