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:
parent
9c071ea40d
commit
6d73c86209
1 changed files with 8 additions and 6 deletions
|
@ -160,6 +160,8 @@
|
||||||
'additionalProperties': False,
|
'additionalProperties': False,
|
||||||
'required': ['cc', 'cxx', 'f77', 'fc'],
|
'required': ['cc', 'cxx', 'f77', 'fc'],
|
||||||
'properties': {
|
'properties': {
|
||||||
|
'strategy': { 'anyOf': [ {'type' : 'string' },
|
||||||
|
{'type' : 'null' }]},
|
||||||
'cc': { 'anyOf': [ {'type' : 'string' },
|
'cc': { 'anyOf': [ {'type' : 'string' },
|
||||||
{'type' : 'null' }]},
|
{'type' : 'null' }]},
|
||||||
'cxx': { 'anyOf': [ {'type' : 'string' },
|
'cxx': { 'anyOf': [ {'type' : 'string' },
|
||||||
|
@ -168,10 +170,10 @@
|
||||||
{'type' : 'null' }]},
|
{'type' : 'null' }]},
|
||||||
'fc': { 'anyOf': [ {'type' : 'string' },
|
'fc': { 'anyOf': [ {'type' : 'string' },
|
||||||
{'type' : 'null' }]},
|
{'type' : 'null' }]},
|
||||||
'strategy': { 'anyOf': [ {'type' : 'string' },
|
'modules': { 'anyOf': [ {'type' : 'string'},
|
||||||
{'type' : 'null' }]},
|
{'type' : 'null' },
|
||||||
'modules': { 'anyOf': [ {'type' : 'string' },
|
{'type': 'array'},
|
||||||
{'type' : 'null' }]}
|
]}
|
||||||
},},},},},},},},
|
},},},},},},},},
|
||||||
|
|
||||||
'mirrors': {
|
'mirrors': {
|
||||||
|
@ -221,7 +223,7 @@
|
||||||
'items' : { 'anyOf' : [ { 'type' : 'string' },
|
'items' : { 'anyOf' : [ { 'type' : 'string' },
|
||||||
{ 'type' : 'number'}]}}, #version strings
|
{ 'type' : 'number'}]}}, #version strings
|
||||||
'compiler': {
|
'compiler': {
|
||||||
'type' : 'array',
|
'typee' : 'array',
|
||||||
'default' : [],
|
'default' : [],
|
||||||
'items' : { 'type' : 'string' } }, #compiler specs
|
'items' : { 'type' : 'string' } }, #compiler specs
|
||||||
'nobuild': {
|
'nobuild': {
|
||||||
|
|
Loading…
Reference in a new issue