Merge "Add note on JJB defaults"
authorAnil Shashikumar Belur <abelur@linuxfoundation.org>
Fri, 3 Nov 2017 14:52:53 +0000 (14:52 +0000)
committerGerrit Code Review <gerrit@linuxfoundation.org>
Fri, 3 Nov 2017 14:52:53 +0000 (14:52 +0000)
.jjb-test/expected-xml/gerrit-python-tox-verify-master
.jjb-test/expected-xml/github-python-tox-verify-master
docs/conf.py
relnotes/v0.11.0.txt [new file with mode: 0644]
shell/tox-run.sh

index 508a4f9..7fe44e7 100644 (file)
@@ -352,6 +352,10 @@ fi
 
 if [ -f &quot;$ARCHIVE_TOX_DIR/failed-envs.log&quot; ]; then
     failed_envs=($(cat &quot;$ARCHIVE_TOX_DIR/failed-envs.log&quot;))
+    for e in &quot;${failed_envs[@]}&quot;; do
+        echo &quot;cat $ARCHIVE_TOX_DIR/tox-$e.log&quot;
+        cat &quot;$ARCHIVE_TOX_DIR/tox-$e.log&quot;
+    done
     echo &quot;ERROR: Failed the following builds: ${failed_envs[*]}&quot;
     exit 1
 fi
index b701917..a60bb79 100644 (file)
@@ -314,6 +314,10 @@ fi
 
 if [ -f &quot;$ARCHIVE_TOX_DIR/failed-envs.log&quot; ]; then
     failed_envs=($(cat &quot;$ARCHIVE_TOX_DIR/failed-envs.log&quot;))
+    for e in &quot;${failed_envs[@]}&quot;; do
+        echo &quot;cat $ARCHIVE_TOX_DIR/tox-$e.log&quot;
+        cat &quot;$ARCHIVE_TOX_DIR/tox-$e.log&quot;
+    done
     echo &quot;ERROR: Failed the following builds: ${failed_envs[*]}&quot;
     exit 1
 fi
index 0359ed9..2458cfe 100644 (file)
@@ -67,7 +67,7 @@ author = 'Linux Foundation Releng'
 # built documents.
 #
 # The short X.Y version.
-version = '0.11.0-dev'
+version = '0.12.0-dev'
 # The full version, including alpha/beta/rc tags.
 release = version
 
@@ -259,4 +259,3 @@ intersphinx_mapping = {
     'lftools': ('http://lftools.releng.linuxfoundation.org/en/latest/', None),
     'python': ('https://docs.python.org/', None),
 }
-
diff --git a/relnotes/v0.11.0.txt b/relnotes/v0.11.0.txt
new file mode 100644 (file)
index 0000000..29d8de4
--- /dev/null
@@ -0,0 +1,54 @@
+lftools v0.11.0 Release Notes
+=============================
+
+Thanks to Anil, Jessica, Thanh, and Trevor for contributing to this release.
+
+
+Notable changes since v0.10.0
+-----------------------------
+
+8d44155 Jessica Wagantall       Add note to release notes v0.9.0
+Release notes of the v0.9.0 release were updated to mention a missing
+requirement on crudini.
+
+391e813 Thanh Ha        Migrate Global JJB docs to RST
+Global JJB docs have been migrated to a new URL which can be found here:
+http://global-jjb.releng.linuxfoundation.org
+
+642924b Thanh Ha        Add M2_HOME to Maven parameters
+Maven parameters will now also configure M2_HOME so that Java Unit tests can
+pick up the correct version of Maven.
+
+c43962c Anil Belur      Update packer version to 1.1.1
+Default packer version was upgraded to 1.1.1 of packer.
+
+6df0d5a Trevor Bramwell Let NEXUSPROXY override NEXUS_URL if both are set
+Fixed bug preventing NEXUS_URL from being able to be overrided by NEXUSPROXY
+
+410c98d Thanh Ha        Make javadoc-verify jobs run concurrently
+javadoc-verify jobs will now run concurrently as they should.
+
+1945ffb Thanh Ha        Cat the failed tox-envs
+Tox verify error logs should be a little easier to parse now as it will also
+print the error in the console log and not just to a separate log file.
+
+
+Full Change Log
+---------------
+
+1945ffb Thanh Ha        Cat the failed tox-envs
+bf30021 Thanh Ha        Add linting for RST files
+2eec22a Thanh Ha        Fix WriteGood lint errors
+1102b10 Thanh Ha        Pin nodeenv version to 1.1.2
+410c98d Thanh Ha        Make javadoc-verify jobs run concurrently
+4fe23ea Trevor Bramwell Remove port from NEXUS_URL for netrc
+6df0d5a Trevor Bramwell Let NEXUSPROXY override NEXUS_URL if both are set
+c43962c Anil Belur      Update packer version to 1.1.1
+f721ee3 Thanh Ha        Revert refspec change breaking submodule build
+642924b Thanh Ha        Add M2_HOME to Maven parameters
+391e813 Thanh Ha        Migrate Global JJB docs to RST
+8d44155 Jessica Wagantall       Add note to release notes v0.9.0
+0555e7c Thanh Ha        Ignore binary files when grepping
+ac63e87 Thanh Ha        Update RTD Gerrit job to check GERRIT_* variables
+f20644a Thanh Ha        Fix jjb-verify job to ignore the docs directory
+d641107 Thanh Ha        Convert packer file-paths cfg to {obj:var}
index 3bf1576..45cb1f2 100644 (file)
@@ -49,6 +49,10 @@ fi
 
 if [ -f "$ARCHIVE_TOX_DIR/failed-envs.log" ]; then
     failed_envs=($(cat "$ARCHIVE_TOX_DIR/failed-envs.log"))
+    for e in "${failed_envs[@]}"; do
+        echo "cat $ARCHIVE_TOX_DIR/tox-$e.log"
+        cat "$ARCHIVE_TOX_DIR/tox-$e.log"
+    done
     echo "ERROR: Failed the following builds: ${failed_envs[*]}"
     exit 1
 fi