mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-29 17:15:34 +00:00
Use specific revision of example-suite in the integration tests
This commit is contained in:
parent
070a72eb13
commit
8bed983661
2 changed files with 8 additions and 1 deletions
|
@ -461,6 +461,7 @@ Ubuntu_Clang_tests_Debug:
|
|||
stage: test
|
||||
variables:
|
||||
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
|
||||
EXAMPLE_SUITE_REVISION: f51b832e033429a7cdc520e0e48d7dfdb9141caa
|
||||
cache:
|
||||
paths:
|
||||
- .cache/pip
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
#!/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' \
|
||||
scripts/integration_tests.py --omw build/install/bin/openmw --workdir integration_tests_output example-suite/
|
||||
|
|
Loading…
Reference in a new issue