Skip to content

Commit 848936f

Browse files
authored
Remove ffmpeg commands temporarily to fix UI tests (#3521)
1 parent ae0c3cd commit 848936f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

buildspec/linuxUiTests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,21 +46,22 @@ phases:
4646
- chmod +x gradlew
4747
- ./gradlew -PideProfileName=$ALTERNATIVE_IDE_PROFILE_NAME buildPlugin --console plain --info
4848

49-
- ffmpeg -loglevel quiet -nostdin -f x11grab -video_size ${SCREEN_WIDTH}x${SCREEN_HEIGHT} -i ${DISPLAY} -codec:v libx264 -pix_fmt yuv420p -vf drawtext="fontsize=48:box=1:[email protected]:boxborderw=5:fontcolor=white:x=0:y=h-text_h:text='%{gmtime\:%H\\\\\:%M\\\\\:%S}'" -framerate 12 -g 12 /tmp/screen_recording.mp4 &
49+
# remove screen recording temporarily due to build issues in ffmpeg
50+
#- ffmpeg -loglevel quiet -nostdin -f x11grab -video_size ${SCREEN_WIDTH}x${SCREEN_HEIGHT} -i ${DISPLAY} -codec:v libx264 -pix_fmt yuv420p -vf drawtext="fontsize=48:box=1:[email protected]:boxborderw=5:fontcolor=white:x=0:y=h-text_h:text='%{gmtime\:%H\\\\\:%M\\\\\:%S}'" -framerate 12 -g 12 /tmp/screen_recording.mp4 &
5051
- ./gradlew -PideProfileName=$ALTERNATIVE_IDE_PROFILE_NAME uiTestCore coverageReport --console plain --info
5152

5253
post_build:
5354
commands:
5455
- TEST_ARTIFACTS="/tmp/testArtifacts"
5556
- mkdir -p $TEST_ARTIFACTS/test-reports
5657

57-
- pkill -SIGINT ffmpeg && sleep 5
58+
#- pkill -SIGINT ffmpeg && sleep 5
5859

5960
- rsync -rmq --include='*/' --include '**/build/idea-sandbox/system*/log/**' --exclude='*' . $TEST_ARTIFACTS/ || true
6061
- rsync -rmq --include='*/' --include '**/build/reports/**' --exclude='*' . $TEST_ARTIFACTS/ || true
6162
- rsync -rmq --include='*/' --include '**/test-results/**/*.xml' --exclude='*' . $TEST_ARTIFACTS/test-reports || true
6263

63-
- mv /tmp/screen_recording.mp4 $TEST_ARTIFACTS/
64+
#- mv /tmp/screen_recording.mp4 $TEST_ARTIFACTS/
6465

6566
- VCS_COMMIT_ID="${CODEBUILD_RESOLVED_SOURCE_VERSION}"
6667
- CI_BUILD_URL=$(echo $CODEBUILD_BUILD_URL | sed 's/#/%23/g') # Encode `#` in the URL because otherwise the url is clipped in the Codecov.io site

0 commit comments

Comments
 (0)