diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2022-05-24 19:10:54 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2022-05-24 19:11:03 +0200 |
commit | d1429558cd0959485115af5fc0ad09ea4fff7203 (patch) | |
tree | 87552bd0935c959f2866b6863534da5a09077753 /jjb | |
parent | 925d6d3bdadf9d03a19c66a1bb557ac7a87925ff (diff) |
Fix CNTT jjb
Change-Id: I97f11d2433b3b7673c3c1986890ad5c432cd7b70
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/cntt/cntt.yaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/jjb/cntt/cntt.yaml b/jjb/cntt/cntt.yaml index 01edfc2b8..8615928e8 100644 --- a/jjb/cntt/cntt.yaml +++ b/jjb/cntt/cntt.yaml @@ -8,13 +8,14 @@ (cd {dir} && tox wget -q -N https://dl.min.io/client/mc/release/linux-amd64/mc && chmod a+x mc ./mc cp -r -q build/ opnfv/artifacts.opnfv.org/$BUILD_TAG/{stream} - echo "\nhttps://artifacts.opnfv.org/$BUILD_TAG/{stream}/index.html\n") + echo -e "\nhttps://artifacts.opnfv.org/{stream}/$BUILD_TAG/index.html\n") fi if [ -d {dir}/build ] && [ -f {dir}/build/Makefile ]; then (cd {dir}/build && make - for i in {dir}/build/*.pdf; do + wget -q -N https://dl.min.io/client/mc/release/linux-amd64/mc && chmod a+x mc + for i in *.pdf; do ./mc cp -r -q $i opnfv/artifacts.opnfv.org/$BUILD_TAG/{stream} - echo "\nhttps://artifacts.opnfv.org/$BUILD_TAG/{stream}/$i\n" + echo -e "\nhttps://artifacts.opnfv.org/{stream}/$BUILD_TAG/$i\n" done) fi |