File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,13 @@ container_definition: &CONTAINER_DEFINITION
2929maven_cache_definition : &MAVEN_CACHE
3030 maven_cache :
3131 folder : ${CIRRUS_WORKING_DIR}/.m2/repository
32- fingerprint_script : cat **/pom.xml
32+ fingerprint_script : |
33+ if [ "$CIRRUS_OS" = "windows" ]; then
34+ powershell.exe -NoLogo -Command "Get-ChildItem -Path . -Filter "pom.xml" -Recurse -ErrorAction SilentlyContinue -Force | cat"
35+ fi
36+ if [ "$CIRRUS_OS" = "linux" ]; then
37+ find . -name pom.xml -exec cat {} \+
38+ fi
3339
3440orchestrator_cache_preparation_definition : &ORCHESTRATOR_CACHE
3541 set_orchestrator_home_script : |
@@ -300,6 +306,8 @@ js_ts_ruling_task:
300306 cleanup_before_cache_script : cleanup_maven_repository
301307
302308eslint_plugin_test_task :
309+ depends_on :
310+ - build
303311 eks_container :
304312 << : *CONTAINER_DEFINITION
305313 dockerfile : .cirrus/nodejs.Dockerfile
@@ -328,6 +336,8 @@ eslint_plugin_test_task:
328336 - npm run test
329337
330338eslint8_node16_plugin_test_task :
339+ depends_on :
340+ - build
331341 eks_container :
332342 << : *CONTAINER_DEFINITION
333343 dockerfile : .cirrus/nodejs16.Dockerfile
You can’t perform that action at this time.
0 commit comments