[go: up one dir, main page]

File: .gitlab-ci.yml

package info (click to toggle)
rust-libslirp 4.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 240 kB
  • sloc: python: 446; makefile: 16
file content (13 lines) | stat: -rw-r--r-- 429 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
image: "rust:latest"

before_script:
- apt-get update -yqq
- apt-get install -yqq --no-install-recommends build-essential git meson dbus libdbus-1-dev python3-scapy python3-pydbus
- git clone https://gitlab.freedesktop.org/slirp/libslirp.git libslirp
- (cd libslirp && meson --prefix=/usr build && ninja -C build install)

test:cargo:
  script:
  - rustc --version && cargo --version
  - cargo test --all --verbose
  - make test