Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
developers:jenkins:job_naming [2016/10/27 09:42]
nurupo Removed Ubuntu Vivid and Ubuntu Wily from the regex
developers:jenkins:job_naming [2017/10/08 07:57] (current)
nurupo [Jenkins Job Naming] Added Ubuntu Artful to the regex
Line 9: Line 9:
         (?<name>[^_]+)                                  # group "name", name of the program/library         (?<name>[^_]+)                                  # group "name", name of the program/library
         (?<os>windows|linux|osx|android)                # group "os", operating systems         (?<os>windows|linux|osx|android)                # group "os", operating systems
-        (?<arch>x86-64|x86|arm64|armhf|armel|multiarch) # group"arch", architectures +        (?<arch>x86-64|x86|arm64|armhf|armel|multiarch) # group "arch", architectures 
-        (?<buildtype>release|debug)                     # group"buildtype", build types+        (?<buildtype>release|debug)                     # group "buildtype", build types
         (?<linking>shared|static|mixed)                 # group "linking", library linking/build types         (?<linking>shared|static|mixed)                 # group "linking", library linking/build types
     )     )
Line 40: Line 40:
                         ((?<=deb_shared_) # if there is "deb_shared_" before here                         ((?<=deb_shared_) # if there is "deb_shared_" before here
                             # then match                             # then match
-                            (wheezy|jessie|stretch|sid|trusty|xenial|yakkety)_+                            (jessie|stretch|buster|sid|xenial|yakkety|zesty|artful)_
                         )                         )
                         |                         |
Line 56: Line 56:
 </code> </code>
  
-You can test your job name against the regex using [[https://regex101.com/r/zJ9zD1/29|this regex101 save]].+You can test your job name against the regex using [[https://regex101.com/r/zJ9zD1/32|this regex101 save]].
  
 ===== Examples of valid job names ===== ===== Examples of valid job names =====
Print/export