Skip to content

Commit e1076de

Browse files
committed
Fix display exports
Signed-off-by: Travis F. Collins <travis.collins@analog.com>
1 parent f990ee9 commit e1076de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CI/scripts/synth_designs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ sed -i "s/hdlcoder_board_customization/hdlcoder_board_customization_local/g" tes
1717
source /opt/Xilinx/Vivado/2022.2/settings64.sh
1818
# Randomize DISPLAY number to avoid conflicts
1919
export DISPLAY_ID=:$(shuf -i 10-1000 -n 1)
20-
Xvfb :$DISPLAY_ID &
20+
Xvfb $DISPLAY_ID &
2121
XVFB_PID=$!
2222
export DISPLAY=$DISPLAY_ID
2323
export SWT_GTK3=0

CI/scripts/targeting_designs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cd ../..
1919
source /opt/Xilinx/Vivado/2022.2/settings64.sh
2020
# Randomize DISPLAY number to avoid conflicts
2121
export DISPLAY_ID=:$(shuf -i 10-1000 -n 1)
22-
Xvfb :$DISPLAY_ID &
22+
Xvfb $DISPLAY_ID &
2323
XVFB_PID=$!
2424
export DISPLAY=$DISPLAY_ID
2525
export SWT_GTK3=0

0 commit comments

Comments
 (0)