RELEASE VERSION: 1.92
New features
- Now tests on Windows 11 with HyperExecute. You can configure this by adding
runsona key in the HyperExecute YAML file.
To run tests on Windows 11, set the value of the runson key to win11 as shown below.
version: 0.1
runson: win11
testSuiteTimeout: 90
autosplit: true
retryOnFailure: true
maxRetries: 1
concurrency: 2
globalTimeout: 150
testSuiteTimeout: 150
testSuiteStep: 150
- HyperExecute now allows you to retry commands that might fail during the pre-stage level.
To do this, configure the preDirectives key in the HyperExecute YAML file.
preDirectives:
commands:
- mkdir -p m2_cache_dir
- mvn -Dmaven.repo.local=$CACHE_DIR -Dmaven.test.skip=true
clean install
maxRetries: 5
The value of the maxRetries key determines how many times you want to retry your commands.