Hashar has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/93030


Change subject: fix race condition in qunit tests
......................................................................

fix race condition in qunit tests

When running two qunit job at the same time, the first to complete would
delete the DocumentRoot symlink and cause the second job to fail
miserabily.  That is the case for MobileFrontend tests recently
introduced.

Change-Id: Ide571953304d8da2d6712f5d58d520018887933a
---
M macro.yaml
1 file changed, 3 insertions(+), 1 deletion(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/integration/jenkins-job-builder-config 
refs/changes/30/93030/1

diff --git a/macro.yaml b/macro.yaml
index 0c17d26..c263564 100644
--- a/macro.yaml
+++ b/macro.yaml
@@ -116,7 +116,9 @@
      - shell: |
         #!/bin/bash -x
         # Create unique sub directory name
-        TEST_ID=`echo "$ZUUL_PROJECT/$ZUUL_COMMIT" | tr '/' '-'`
+        #TEST_ID=`echo "$ZUUL_PROJECT/$ZUUL_COMMIT" | tr '/' '-'`
+        # String of jenkins-$JOB_NAME-$BUILD_NUMBER.
+        TEST_ID="$BUILD_TAG"
         # Configure MediaWiki
         echo -e \
          "<?php\n\$wgServer = 'http://localhost:9412';\n"\

-- 
To view, visit https://gerrit.wikimedia.org/r/93030
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ide571953304d8da2d6712f5d58d520018887933a
Gerrit-PatchSet: 1
Gerrit-Project: integration/jenkins-job-builder-config
Gerrit-Branch: master
Gerrit-Owner: Hashar <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to