Skip to content

Commit e5b4f26

Browse files
committed
fix(test): use alternative URL for Spectre/Meltdown checker
The link we were using to download the Spectre/Meltdown checker script stopped working and caused our CI to fail consistently. Use this alternative link to download the script. Signed-off-by: Babis Chalios <[email protected]>
1 parent aa1c77b commit e5b4f26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration_tests/security/test_vulnerabilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from framework.microvm import MicroVMFactory
1818
from framework.properties import global_props
1919

20-
CHECKER_URL = "https://meltdown.ovh"
20+
CHECKER_URL = "https://raw.githubusercontent.com/speed47/spectre-meltdown-checker/master/spectre-meltdown-checker.sh"
2121
CHECKER_FILENAME = "spectre-meltdown-checker.sh"
2222
REMOTE_CHECKER_PATH = f"/tmp/{CHECKER_FILENAME}"
2323
REMOTE_CHECKER_COMMAND = f"sh {REMOTE_CHECKER_PATH} --no-intel-db --batch json"

0 commit comments

Comments
 (0)