From d88089a1b8d0a7a6e40438cb805c9e3e123daf38 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Sat, 23 Apr 2016 11:31:05 +0200 Subject: [PATCH] Use -j 1 on travis --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 57a6fa29..24098b12 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,8 @@ addons: script: - cargo test -v --manifest-path glsl-to-spirv/Cargo.toml - cargo test -v --manifest-path vulkano-shaders/Cargo.toml - - cargo test --lib --no-run -v --manifest-path vulkano/Cargo.toml # TODO: remove `--lib` when it works + # We run the main build with `-j 1` or we have a chance to reach travis' memory limit + - cargo test --lib --no-run -j 1 -v --manifest-path vulkano/Cargo.toml # TODO: remove `--lib` when it works after_success: - |