From b18fb57020f24c10a18e2924a9bc165e1fbda220 Mon Sep 17 00:00:00 2001 From: Malik Olivier Boussejra Date: Thu, 1 Nov 2018 08:03:39 +0900 Subject: [PATCH] [travis] Add build test for examples The examples are excluded from the workspace, so we need to add the command to build them. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 2f862a3..7d5e110 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,3 +28,5 @@ before_install: script: - cargo build --all --verbose - cargo test --all --verbose + - cargo build --all --verbose --manifest-path imgui-examples/Cargo.toml + - cargo build --all --verbose --manifest-path imgui-glium-examples/Cargo.toml