Skip to content

Commit daf84db

Browse files
committed
Add WebRender to cargotest
1 parent 9d2e83e commit daf84db

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

src/ci/docker/x86_64-gnu-cargotest/Dockerfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1212
libssl-dev \
1313
sudo \
1414
xz-utils \
15-
pkg-config
15+
pkg-config \
16+
libgl1-mesa-dev \
17+
llvm-dev \
18+
libfreetype6-dev \
19+
libexpat1-dev
1620

1721
COPY scripts/sccache.sh /scripts/
1822
RUN sh /scripts/sccache.sh

src/tools/cargotest/main.rs

+7
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ const TEST_REPOS: &'static [Test] = &[
6767
// This takes much less time to build than all of Servo and supports stable Rust.
6868
packages: &["stylo_tests", "selectors"],
6969
},
70+
Test {
71+
name: "webrender",
72+
repo: "https://github.com/servo/webrender",
73+
sha: "57250b2b8fa63934f80e5376a29f7dcb3f759ad6",
74+
lock: None,
75+
packages: &[],
76+
},
7077
];
7178

7279
fn main() {

0 commit comments

Comments
 (0)