Home
last modified time | relevance | path

Searched +full:llvm +full:- +full:buildbot +full:- +full:worker (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/llvm/docs/
DHowToAddABuilder.rst2 How To Add Your Build Configuration To LLVM Buildbot Infrastructure
9 buildbot-worker to private worker builder to LLVM Buildbot Infrastructure.
16 * The main buildmaster at `<http://lab.llvm.org:8011>`_. All builders attached
18 * The staging buildbot at `<http://lab.llvm.org:8014>`_. All builders attached
23 Steps To Add Builder To LLVM Buildbot
26 public LLVM Buildbot.
35 #. The computer you will be registering with the LLVM buildbot
38 of parallelism (-j param) would give the fastest build. You can build
41 #. Install buildbot-worker (currently we are using buildbot version 2.8.5).
42 Depending on the platform, buildbot-worker could be available to download and
[all …]
/external/llvm-project/libc/utils/buildbot/
DREADME.txt2 llvm-libc buildbot worker.
4 Dockerfile: Sets up the docker image with all pre-requisites.
6 run.sh: Script to create and start buildbot worker with supplied password.
10 docker build -t llvm-libc-buildbot-worker .
13 cmd to run the buildbot:
15 docker run -it llvm-libc-buildbot-worker <passwd>
Drun.sh4 # run and start the buildbot while supplying the password
6 buildbot-worker create-worker --keepalive=200 "${WORKER_NAME}" \
7 lab.llvm.org:9990 "${WORKER_NAME}" "$1"
9 buildbot-worker start "${WORKER_NAME}"
10 tail -f ${WORKER_NAME}/twistd.log
/external/llvm-project/libcxx/utils/docker/debian9/buildbot/
Ddocker-compose.yml3 llvm-buildbot-worker:
5 context: https://github.com/llvm/llvm-project.git#master:libcxx/utils/docker/debian9/buildbot
8 llvm_tot: "ericwf/llvm:11.x"
9 image: llvm-buildbot-worker
11 - /var/run/docker.sock:/var/run/docker.sock
13 - buildbot-auth
18 buildbot-auth:
19 file: buildbot-auth.json
DDockerfile2 #===-------------------------------------------------------------------------------------------===//
4 #===-------------------------------------------------------------------------------------------===//
8 FROM ${gcc_tot} AS gcc-tot
9 FROM ${llvm_tot} AS llvm-tot
11 FROM debian:stretch AS base-image
13 ADD install-packages.sh /tmp/
14 RUN /tmp/install-packages.sh && rm /tmp/install-packages.sh
16 COPY --from=ericwf/gcc:5.5.0 /compiler /opt/gcc-5
18 FROM base-image as worker-image
20 COPY --from=gcc-tot /compiler /opt/gcc-tot
[all …]
/external/llvm/docs/
DLibFuzzer.rst2 libFuzzer – a library for coverage-guided fuzz testing.
11 LibFuzzer is a library for in-process, coverage-guided, evolutionary fuzzing
15 all of its fuzzing inside a single process. This in-process fuzzing can be more
17 for process start-up.
23 information for libFuzzer is provided by LLVM's SanitizerCoverage_
34 (If `building Clang from trunk`_ is too time-consuming or difficult, then
38 .. code-block:: console
47 ``./third_party/llvm-build/Release+Asserts/bin/clang``)
49 The libFuzzer code resides in the LLVM repository, and requires a recent Clang
50 compiler to build (and is used to `fuzz various parts of LLVM itself`_).
[all …]
/external/python/cpython3/Misc/
DHISTORY2 --------------
13 Release date: 2017-01-17
21 Release date: 2017-01-02
24 -----------------
26 - Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
29 - Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug
33 -------
35 - Issue #28563: Fixed possible DoS and arbitrary code execution when handle
39 - In the curses module, raise an error if window.getstr() or window.instr() is
42 - Issue #27783: Fix possible usage of uninitialized memory in operator.methodcaller.
[all …]