summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-02 14:29:41 -0600
committermo khan <mo@mokhan.ca>2025-05-02 14:29:41 -0600
commitc583bcd1473205104a1e1af812ed4976d30c7baa (patch)
tree933edf78a4ac8aea55256e42641e56bbb4c58834 /script
parent91defaefca47e9cebbe92c6abf33c4423df9bc7d (diff)
refactor: remove anything unrelated to the authz daemon
Diffstat (limited to 'script')
-rwxr-xr-xscript/cibuild15
1 files changed, 0 insertions, 15 deletions
diff --git a/script/cibuild b/script/cibuild
deleted file mode 100755
index b3da3e15..00000000
--- a/script/cibuild
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env ruby
-
-fork do
- exec "mage servers"
-end
-
-# Let the servers boot up
-sleep 1
-
-test_pid = fork do
- exec "mage test"
-end
-
-Process.wait(test_pid)
-Process.kill('TERM', 0)