-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
50 lines (46 loc) · 1.41 KB
/
Copy path.gitlab-ci.yml
File metadata and controls
50 lines (46 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
stages:
- containers
- builds
- sanity_checks
.native_git_build_job:
extends: .gitlab_native_build_job
before_script:
- export MAKEFLAGS="-j$(getconf _NPROCESSORS_ONLN)"
- export SCRATCH_DIR="/tmp/scratch"
- export VROOT="$SCRATCH_DIR/vroot"
- export LIBDIR="$VROOT/lib"
- export LD_LIBRARY_PATH="$LIBDIR"
- export PATH="$VROOT/bin:$PATH"
- export PKG_CONFIG_PATH="$LIBDIR/pkgconfig"
- export RUSTFLAGS="-D warnings"
script:
- pushd "$PWD"
- mkdir -p "$SCRATCH_DIR"
- cd "$SCRATCH_DIR"
- git clone --depth 1 https://gitlab.com/libvirt/libvirt.git
- cd libvirt
- meson build -Ddriver_libvirtd=disabled "--prefix=$VROOT" "--libdir=$LIBDIR"
- ninja -C build install
- popd
- cargo test --verbose
- cargo test --verbose --manifest-path=virt-sys/Cargo.toml
.native_build_job:
extends: .gitlab_native_build_job
before_script:
- export RUSTFLAGS="-D warnings"
script:
- cargo test --verbose
- cargo test --verbose --manifest-path=virt-sys/Cargo.toml
- if test "$CLIPPY" = "enable"; then
cargo clippy --quiet --no-deps --all-targets >cargo-clippy.txt 2>&1;
if test -s cargo-clippy.txt; then
echo "clippy error, see cargo-clippy.txt artifact for details";
exit 1;
fi;
fi
artifacts:
paths:
- cargo-clippy.txt
expire_in: 1 week
when: on_failure
include: '/ci/gitlab.yml'