Skip to content

Commit

Permalink
compilers.*: Added package-version field to data and schema
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeGat committed Jun 5, 2024
1 parent c071b11 commit 5f9e3cf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions config/compilers.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[
{
"name": "intel",
"package": "intel-oneapi-compilers",
"version": "2021.4.0"
"package": "intel-oneapi-compilers-classic",
"package-version": "2021.6.0",
"version": "2021.10.0"
}
]
5 changes: 4 additions & 1 deletion config/compilers.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@
"package": {
"type": "string"
},
"package-version": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [ "name", "package", "version" ],
"required": [ "name", "package", "package-version", "version" ],
"additionalProperties": false
}
}

0 comments on commit 5f9e3cf

Please sign in to comment.