File tree 1 file changed +17
-5
lines changed
1 file changed +17
-5
lines changed Original file line number Diff line number Diff line change 1
- container :
2
- image : rust:latest
3
- kvm : true
4
-
5
- task :
1
+ unit_test_task :
2
+ container :
3
+ image : rust:latest
4
+ kvm : true
6
5
name : Unit Tests (x86_64)
7
6
fake_init_script : touch init/init
8
7
download_libkrunfw_script :
14
13
- apt-get update && apt-get install -y libvirglrenderer-dev libepoxy-dev libdrm-dev
15
14
test_script : cargo test
16
15
before_cache_script : rm -rf $CARGO_HOME/registry/index
16
+
17
+ ci_test_task :
18
+ container :
19
+ image : fedora:41
20
+ kvm : true
21
+ name : Integration Tests (x86_64)
22
+ download_libkrunfw_script :
23
+ - curl -L -o /tmp/libkrunfw-4.9.0-x86_64.tgz https://github.com/containers/libkrunfw/releases/download/v4.9.0/libkrunfw-4.9.0-x86_64.tgz && tar xpf /tmp/libkrunfw-4.9.0-x86_64.tgz -C /usr
24
+ install_packages_script :
25
+ - dnf install -y clang-devel gcc glibc-static make patchelf rustup
26
+ install_rust_script :
27
+ - rustup-init -y -t x86_64-unknown-linux-musl
28
+ test_script : . "$HOME/.cargo/env" && make test
You can’t perform that action at this time.
0 commit comments