ci/lava: turn the $BUILD_VK check into a proper if block
Allows us to simply add something in the block in the next commit. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28168>
This commit is contained in:
committed by
Marge Bot
parent
ec27d138cb
commit
328a3de7cc
@@ -306,9 +306,11 @@ DEQP_API=GLES \
|
||||
DEQP_TARGET=surfaceless \
|
||||
. .gitlab-ci/container/build-deqp.sh
|
||||
|
||||
[ "$BUILD_VK" == "ON" ] && DEQP_API=VK \
|
||||
DEQP_TARGET=default \
|
||||
. .gitlab-ci/container/build-deqp.sh
|
||||
if [ "$BUILD_VK" == "ON" ]; then
|
||||
DEQP_API=VK \
|
||||
DEQP_TARGET=default \
|
||||
. .gitlab-ci/container/build-deqp.sh
|
||||
fi
|
||||
|
||||
rm -rf /VK-GL-CTS
|
||||
|
||||
|
||||
Reference in New Issue
Block a user