Fixed problem that causes a UnicodeEncodeError when use multi-byte characters in the job.yml. Change-Id: Ie715c827a794e73fae11cdca079ea80cfb8c280dchanges/10/64610/3
parent
777a29aa8a
commit
604d39305b
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" ?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<project>
|
||||
<publishers>
|
||||
<hudson.plugins.descriptionsetter.DescriptionSetterPublisher>
|
||||
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<project>
|
||||
<publishers>
|
||||
<hudson.plugins.descriptionsetter.DescriptionSetterPublisher>
|
||||
<regexp>.*(<a href=.*a>)</regexp>
|
||||
<regexpForFailed>.*(<a href=.*a>)</regexpForFailed>
|
||||
<description>こんにちは</description>
|
||||
<descriptionForFailed>さようなら</descriptionForFailed>
|
||||
<setForMatrix>true</setForMatrix>
|
||||
</hudson.plugins.descriptionsetter.DescriptionSetterPublisher>
|
||||
</publishers>
|
||||
</project>
|
||||
@ -0,0 +1,7 @@
|
||||
publishers:
|
||||
- description-setter:
|
||||
regexp: ".*(<a href=.*a>)"
|
||||
regexp-for-failed: ".*(<a href=.*a>)"
|
||||
description: "こんにちは"
|
||||
description-for-failed: "さようなら"
|
||||
set-for-matrix: true
|
||||
Loading…
Reference in new issue