From f3bd2366ee49fb6a36ec40fa1fee7d685c3d8dda Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Sat, 18 Jan 2020 14:58:07 +0800 Subject: [PATCH] gitlab pipeline: try to run inside "script" to get a tty --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 272b863..4fe13dd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,13 +28,13 @@ test:linux:stable: - build:linux:stable script: - rustup update stable - - cargo +stable test --verbose + - script -c "cargo +stable test --verbose" test:linux: stage: test dependencies: - build:linux - script: cargo +nightly test --verbose + script: script -c "cargo +nightly test --verbose" test:redox: stage: test