ndl: track Vulkan Beta Drivers

This commit is contained in:
Vladislav Yarmak
2020-01-17 22:40:55 +02:00
parent ec7bec5c2e
commit 31b850f27c
4 changed files with 153 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ All scripts may be used both as standalone application and importable module. Fo
* mailer.py - module with email routines and minimalistic email client for test purposes.
* gfe\_get\_driver.py - GeForce Experience client library (and test util).
* get\_nvidia\_downloads.py - Nvidia downloads site parser (and test util).
* get\_vulkan\_downloads.py - Nvidia Developer downloads site parser (and test util). Used for Vulkan Beta Drivers.
### Operation
@@ -214,6 +215,20 @@ All scripts may be used both as standalone application and importable module. Fo
"type": "cuda_downloads",
"name": "cuda toolkit tracker",
"params": {}
},
{
"type": "vulkan_beta",
"name": "vulkan beta windows",
"params": {
"os": "Windows"
}
},
{
"type": "vulkan_beta",
"name": "vulkan beta linux",
"params": {
"os": "Linux"
}
}
],
"notifiers": [
@@ -306,6 +321,17 @@ Params:
* `timeout` - allowed delay in seconds for each network operation. Default: `10.0`
#### VulkanBetaDownloadsChannel
Parses Nvidia Developer downloads site for latest Vulkan Beta Drivers.
Type: `vulkan_beta`
Params:
* `os` - OS family. Allowed values: `Linux`, `Windows`. Default: `Linux`.
* `timeout` - allowed delay in seconds for each network operation. Default: `10.0`
### Notifiers
#### CommandNotifier