
Summary: Created a docker container to provide transparency and easy changes to the llvm-libc buildbot intfra. Reviewers: sivachandra Reviewed By: sivachandra Subscribers: MaskRay, tschuett, libc-commits Tags: #libc-project Differential Revision: https://reviews.llvm.org/D75596
11 lines
317 B
Bash
Executable File
11 lines
317 B
Bash
Executable File
#!/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.
|
|
buildslave create-slave --keepalive=200 "${WORKER_NAME}" \
|
|
lab.llvm.org:9990 "${WORKER_NAME}" "$1"
|
|
|
|
buildslave start "${WORKER_NAME}"
|
|
tail -f ${WORKER_NAME}/twistd.log
|