Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ Bug fixes::
* Disabled malware protection, cloud and automatic sample submission on Windows 10 ({uri-issue}120[#120])

Infrastructure Improvements::
* Further improvements to Jenkins CI system fixed Windows 7 build issues ({uri-issue}108[#108], {uri-issue}110[#110])
* Jenkins CI system can now perform smoke tests on external PRs ({uri-issue}123[#123])
* Various Jenkins CI system improvements ({uri-issue}108[#108], {uri-issue}110[#110], {uri-issue}123[#123], {uri-issue}124[#124])


== 0.4.0
Expand Down
5 changes: 5 additions & 0 deletions tests/smoke/build-all-templates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ pip3 install -e .

echo "Fetching all templates..."
TEMPLATES=`malboxes list | head -n-1 | tail -n+3`
if [[ ${PIPESTATUS[0]} != 0 ]]; then
echo "Malboxes didn't list templates. This is a fatal error. Force failing the build."
exit 1
fi


# build all templates
declare -A RESULTS
Expand Down