]> code.ossystems Code Review - openembedded-core.git/commitdiff
sanity.bbclass: Add az fetcher to accepted URI protocols for mirrors sanity
authorAlejandro Hernandez Samaniego <alejandro@enedino.org>
Wed, 24 Feb 2021 17:28:15 +0000 (10:28 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 11 Mar 2021 14:05:54 +0000 (14:05 +0000)
Signed-off-by: Alejandro Enedino Hernandez Samaniego <alhe@linux.microsoft.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/sanity.bbclass

index 485173ab484d62206f7994d8b17f05d6ceaa1f05..894f0e31078fe71854bc3f46b14ab18f7fee079c 100644 (file)
@@ -895,7 +895,7 @@ def check_sanity_everybuild(status, d):
     mirror_vars = ['MIRRORS', 'PREMIRRORS', 'SSTATE_MIRRORS']
     protocols = ['http', 'ftp', 'file', 'https', \
                  'git', 'gitsm', 'hg', 'osc', 'p4', 'svn', \
-                 'bzr', 'cvs', 'npm', 'sftp', 'ssh', 's3' ]
+                 'bzr', 'cvs', 'npm', 'sftp', 'ssh', 's3', 'az' ]
     for mirror_var in mirror_vars:
         mirrors = (d.getVar(mirror_var) or '').replace('\\n', ' ').split()