diff --git a/dustbin/gen_ci.py b/dustbin/gen_ci.py deleted file mode 100755 index 1a6341f4e0d35df9175ccdb540d27346785b4429..0000000000000000000000000000000000000000 --- a/dustbin/gen_ci.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/python3 - -ops = [ 'rproxy', 'drive', 'ss-tw', 'ss-us1', 'ss-us5', 'ss-us6', 'ovpn-tw', 'www', 'mail', 'tm', 'git', 'zhixiang', 'mc', 'push-httpdb-agent', 'ddns-wuhan', 'ddns-us', 'dl' ] -allow_fail = [ 'mc', 'push-httpdb-agent' ] - - -print('''image: recolic/rserver-monitor - -stages: - - test -''') -for op in ops: - print('{}:\n stage: test\n only: \n - schedules\n script: "/do.bash {}"'.format(op, op)) - if op in allow_fail: - print(' allow_failure: true') - print() -