Gives error on cori that [PrgEnv-xx, gcc/x.x.x] is not part of the schema. Changed it to oneOf : type : array to get rid of the error.

This commit is contained in:
Mario Melara 2016-04-04 13:45:15 -07:00
parent 9c071ea40d
commit 6d73c86209

View file

@ -159,7 +159,9 @@
'type': 'object',
'additionalProperties': False,
'required': ['cc', 'cxx', 'f77', 'fc'],
'properties': {
'properties': {
'strategy': { 'anyOf': [ {'type' : 'string' },
{'type' : 'null' }]},
'cc': { 'anyOf': [ {'type' : 'string' },
{'type' : 'null' }]},
'cxx': { 'anyOf': [ {'type' : 'string' },
@ -168,10 +170,10 @@
{'type' : 'null' }]},
'fc': { 'anyOf': [ {'type' : 'string' },
{'type' : 'null' }]},
'strategy': { 'anyOf': [ {'type' : 'string' },
{'type' : 'null' }]},
'modules': { 'anyOf': [ {'type' : 'string' },
{'type' : 'null' }]}
'modules': { 'anyOf': [ {'type' : 'string'},
{'type' : 'null' },
{'type': 'array'},
]}
},},},},},},},},
'mirrors': {
@ -221,7 +223,7 @@
'items' : { 'anyOf' : [ { 'type' : 'string' },
{ 'type' : 'number'}]}}, #version strings
'compiler': {
'type' : 'array',
'typee' : 'array',
'default' : [],
'items' : { 'type' : 'string' } }, #compiler specs
'nobuild': {