Merge "Update CLM job to use Nexus Policy Evaluation"
authorThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 1 Aug 2018 00:24:35 +0000 (00:24 +0000)
committerGerrit Code Review <gerrit@linuxfoundation.org>
Wed, 1 Aug 2018 00:24:35 +0000 (00:24 +0000)
relnotes/v0.23.0.txt [new file with mode: 0644]
shell/cmake-build.sh

diff --git a/relnotes/v0.23.0.txt b/relnotes/v0.23.0.txt
new file mode 100644 (file)
index 0000000..4c03505
--- /dev/null
@@ -0,0 +1,33 @@
+global-jjb v0.23.0 Release Notes
+================================
+
+Thanks to everyone who contributed to this release.
+
+
+Upgrade considerations
+----------------------
+
+None.
+
+
+Notable changes since v0.22.0
+-----------------------------
+
+f0dae80 Thanh Ha        Add cmake-verify job template
+CMake projects can now use a global-jjb defined verify job.
+
+5ca1149 Thanh Ha        Fix global-vars fail to instantiate instance
+Fix bug in which instance.save() to no longer worked to update global
+variables, we resolved by using the full function call Jenkins.instance.save().
+
+
+Full Change Log
+---------------
+
+4a56aac Thanh Ha        Use eval so that $cmake_opts is properly parsed
+10a40a3 Thanh Ha        Validate only template/platform that is built
+b788ff5 Thanh Ha        Fix GitHub templates override lf-infra-properties
+f0dae80 Thanh Ha        Add cmake-verify job template
+71937a2 Thanh Ha        Add Best Practice for Shell scripts
+62570ef Thanh Ha        Add Node / NPM cache & metrics to .gitignore
+5ca1149 Thanh Ha        Fix global-vars fail to instantiate instance
index a6a41e4..2466c17 100644 (file)
@@ -27,7 +27,7 @@ mkdir -p "$build_dir"
 cd "$build_dir" || exit
 # $cmake_opts needs to wordsplit to pass options.
 # shellcheck disable=SC2086
-cmake -DCMAKE_INSTALL_PREFIX="$INSTALL_PREFIX" $cmake_opts ..
+eval cmake -DCMAKE_INSTALL_PREFIX="$INSTALL_PREFIX" $cmake_opts ..
 # $make_opts needs to wordsplit to pass options.
 # shellcheck disable=SC2086
 make $make_opts