Skip to content

Commit

Permalink
Update Groovy script to list required test containers
Browse files Browse the repository at this point in the history
to work with non-docker registries (e.g. db2/mssql)
  • Loading branch information
marko-bekhta authored and yrodiere committed Nov 21, 2023
1 parent 6794a69 commit a8bb722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@
}
}
// Exclude images from non-dockerhub repositories
new File('${containerImagesListFile}').append( images.findAll{ref -> !(ref ==~ /^(?!((.*\.)?docker\.io))[\w\d\.]+\/[\w\d\.]+\/[\w\d\.]+(:.+)?$/)}.join('\n') + '\n' )
new File('${containerImagesListFile}').append( images.join('\n') + '\n' )
]]></script>
</configuration>
</execution>
Expand Down

0 comments on commit a8bb722

Please sign in to comment.