mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-04 03:40:14 +00:00
Use specific revision of example-suite in the integration tests
This commit is contained in:
parent
070a72eb13
commit
8bed983661
@ -461,6 +461,7 @@ Ubuntu_Clang_tests_Debug:
|
|||||||
stage: test
|
stage: test
|
||||||
variables:
|
variables:
|
||||||
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
|
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
|
||||||
|
EXAMPLE_SUITE_REVISION: f51b832e033429a7cdc520e0e48d7dfdb9141caa
|
||||||
cache:
|
cache:
|
||||||
paths:
|
paths:
|
||||||
- .cache/pip
|
- .cache/pip
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#!/bin/bash -ex
|
#!/bin/bash -ex
|
||||||
|
|
||||||
git clone --depth=1 https://gitlab.com/OpenMW/example-suite.git
|
mkdir example-suite
|
||||||
|
cd example-suite
|
||||||
|
git init
|
||||||
|
git remote add origin https://gitlab.com/OpenMW/example-suite.git
|
||||||
|
git fetch --depth=1 origin ${EXAMPLE_SUITE_REVISION}
|
||||||
|
git checkout FETCH_HEAD
|
||||||
|
cd ..
|
||||||
|
|
||||||
xvfb-run --auto-servernum --server-args='-screen 0 640x480x24x60' \
|
xvfb-run --auto-servernum --server-args='-screen 0 640x480x24x60' \
|
||||||
scripts/integration_tests.py --omw build/install/bin/openmw --workdir integration_tests_output example-suite/
|
scripts/integration_tests.py --omw build/install/bin/openmw --workdir integration_tests_output example-suite/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user