@@ -9,7 +9,7 @@ import time
from urllib.parse import urljoin
cdate=time.strftime("%Y%m%d")
-api="https://api.staging.kernelci.org/upload"
+api="https://api.kernelci.org/upload"
token=os.getenv("KERNELCI_TOKEN")
release=sys.argv[1]
@@ -66,11 +66,11 @@ if os.path.exists(rootfs) and os.path.exists(initrd):
upload_file(api, token, upload_path, rootfs, rootfs_filename)
print("uploading initrd to KernelCI")
upload_file(api, token, upload_path, initrd, initrd_gz_filename)
- print("uploaded to: https://storage.staging.kernelci.org"+upload_path)
+ print("uploaded to: https://storage.kernelci.org"+upload_path)
# Upload latest
print("uploading rootfs to KernelCI CIP latest")
upload_file(api, token, upload_path_latest, rootfs, rootfs_filename)
print("uploading initrd to KernelCI CIP latest")
upload_file(api, token, upload_path_latest, initrd, initrd_gz_filename)
- print("uploaded to: https://storage.staging.kernelci.org"+upload_path_latest)
+ print("uploaded to: https://storage.kernelci.org"+upload_path_latest)
Signed-off-by: Alice Ferrazzi <alice.ferrazzi@miraclelinux.com> --- scripts/deploy-kernelci.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)