From 792f76cd77694297c58fe6409d2508373945991b Mon Sep 17 00:00:00 2001 From: George Lima Date: Fri, 25 Jan 2019 10:31:41 -0300 Subject: [PATCH] ci(config): run xvfb in background --- .circleci/config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 57c684c..db216a7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,12 @@ jobs: background: true - run: yarn wait-on http://localhost:8080 && yarn wait-on http://localhost:18232 - run: export DISPLAY=:99 - - run: xvfb-run --listen-tcp --server-num=99 --auth-file /tmp/xvfb.auth -s "-ac -screen 0 1024x768x24" yarn e2e:run & (coproc ffmpeg -f x11grab -video_size 1024x768 -i :99 -codec:v libx264 -r 5 /tmp/e2e-record.mp4 & sleep 60) && echo 'q' >&"${COPROC[1]}" + - run: + command: xvfb-run --listen-tcp --server-num=99 --auth-file /tmp/xvfb.auth -s "-ac -screen 0 1024x768x24" yarn e2e:run + background: true + - run: | + (coproc ffmpeg -f x11grab -video_size 1024x768 -i :99 -codec:v libx264 -r 5 /tmp/e2e-record.mp4 & sleep 40) + echo 'q' >&"${COPROC[1]}" - store_artifacts: path: /tmp/e2e-record.mp4 destination: e2e-record.mp4