]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
tasks: Replace ruby with python
authorAki Tuomi <cmouse@cmouse.fi>
Thu, 21 Mar 2024 11:35:23 +0000 (13:35 +0200)
committerAki Tuomi <cmouse@cmouse.fi>
Thu, 4 Apr 2024 07:56:53 +0000 (10:56 +0300)
tasks.py

index f3e72b3d4fffb36f284ba07e9d50d5b040e2ca3b..f0b3cb8a1e6aafb990026f6396fb160eb1633b21 100644 (file)
--- a/tasks.py
+++ b/tasks.py
@@ -47,8 +47,7 @@ auth_build_deps = [    # FIXME: perhaps we should be stealing these from the deb
     'libsqlite3-dev',
     'libyaml-cpp-dev',
     'libzmq3-dev',
-    'ruby-bundler',
-    'ruby-dev',
+    'python3-venv',
     'sqlite3',
     'unixodbc-dev',
     'cmake',
@@ -117,8 +116,7 @@ auth_test_deps = [   # FIXME: we should be generating some of these from shlibde
     'libzmq3-dev',
     'lmdb-utils',
     'prometheus',
-    'ruby-bundler',
-    'ruby-dev',
+    'python3-venv',
     'socat',
     'softhsm2',
     'unbound-host',
@@ -642,9 +640,6 @@ def ci_dnsdist_make_bear(c):
 
 @task
 def ci_auth_install_remotebackend_test_deps(c):
-    with c.cd('modules/remotebackend'):
-      # c.run('bundle config set path vendor/bundle')
-      c.run('sudo ruby -S bundle install')
     c.sudo('apt-get install -y socat')
 
 @task