You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
328 B
11 lines
328 B
#!/bin/bash
|
|
|
|
# This serves as the entrypoint for docker to allow us to
|
|
# run and start the buildbot while supplying the password
|
|
# as an argument.
|
|
buildbot-worker create-worker --keepalive=200 "${WORKER_NAME}" \
|
|
lab.llvm.org:9990 "${WORKER_NAME}" "$1"
|
|
|
|
buildbot-worker start "${WORKER_NAME}"
|
|
tail -f ${WORKER_NAME}/twistd.log
|