]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Let the rust install script handle versions and digests 13491/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Wed, 15 Nov 2023 08:25:03 +0000 (09:25 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Wed, 15 Nov 2023 08:25:03 +0000 (09:25 +0100)
tasks.py

index bd0f2ba099e1e6e616e3ded742a96453d052a99e..9a2d4e37a6a4638e41e62a1c6282b213aeec12d3 100644 (file)
--- a/tasks.py
+++ b/tasks.py
@@ -8,7 +8,6 @@ import time
 auth_backend_ip_addr = os.getenv('AUTH_BACKEND_IP_ADDR', '127.0.0.1')
 
 clang_version = os.getenv('CLANG_VERSION', '13')
-rust_version = 'rust-1.72.0-x86_64-unknown-linux-gnu'
 quiche_version = '0.18.0'
 quiche_hash = 'eb242a14c4d801a90b57b6021dd29f7a62099f3a4d7a7ba889e105f8328e6c1f'
 
@@ -174,7 +173,7 @@ def install_clang_runtime(c):
 
 @task
 def ci_install_rust(c, repo):
-    c.sudo(f'{repo}/builder-support/helpers/install_rust.sh {rust_version}')
+    c.sudo(f'{repo}/builder-support/helpers/install_rust.sh')
 
 def install_libdecaf(c, product):
     c.run('git clone https://git.code.sf.net/p/ed448goldilocks/code /tmp/libdecaf')