From: Otto Moerbeek Date: Wed, 15 Nov 2023 08:25:03 +0000 (+0100) Subject: Let the rust install script handle versions and digests X-Git-Tag: rec-5.0.0-rc1~36^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F13491%2Fhead;p=thirdparty%2Fpdns.git Let the rust install script handle versions and digests --- diff --git a/tasks.py b/tasks.py index bd0f2ba099..9a2d4e37a6 100644 --- 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')