├── .arcconfig ├── .gitignore ├── LICENSE.TXT ├── README.txt ├── codesign └── debugsign │ ├── .coveragerc │ ├── .gitignore │ ├── README.md │ ├── dbsign │ ├── __init__.py │ ├── ansi.py │ ├── commands.py │ ├── logger.py │ ├── result.py │ ├── security.py │ └── shell.py │ ├── debugsign │ ├── requirements.txt │ └── unittests │ ├── __init__.py │ ├── test_ansi.py │ ├── test_authdb.py │ ├── test_commands.py │ ├── test_logger.py │ ├── test_result.py │ ├── test_security.py │ └── test_shell.py ├── dep ├── dep.py ├── requirements.txt └── tests │ ├── Dependencies0 │ ├── Dependencies1 │ ├── assets │ ├── brew_cmake_installed.json │ ├── brew_ninja_not_installed.json │ ├── instruments_output.txt │ └── pip_output.json │ ├── conftest.py │ └── test_dep.py ├── llvm-lnt ├── blacklist ├── fabfile.py └── kill_zombies.py ├── llvmbisect ├── bin │ └── llvmlab ├── docs │ ├── Makefile │ ├── builders.rst │ ├── conf.py │ ├── index.rst │ └── llvmlab_bisect.rst ├── llvmlab │ ├── __init__.py │ ├── algorithm.py │ ├── ci.py │ ├── gcs.py │ ├── llvmlab.py │ ├── scripts.py │ ├── shell.py │ ├── test_llvmlab.py │ └── util.py └── setup.py ├── llvmlab ├── README.txt ├── docs │ ├── Makefile │ ├── README.txt │ ├── _templates │ │ ├── index.html │ │ ├── indexsidebar.html │ │ └── layout.html │ ├── conf.py │ ├── contents.rst │ ├── intro.rst │ └── make.bat ├── llvmlab │ ├── TODO.txt │ ├── __init__.py │ ├── ci │ │ ├── __init__.py │ │ ├── buildbot │ │ │ ├── __init__.py │ │ │ └── statusclient.py │ │ ├── config.py │ │ ├── status.py │ │ └── summary.py │ ├── data.py │ ├── llvmlabtool │ │ ├── __init__.py │ │ ├── app.wsgi.sample │ │ ├── lab.cfg.sample │ │ └── main.py │ ├── machine.py │ ├── ui │ │ ├── __init__.py │ │ ├── app.py │ │ ├── ci │ │ │ ├── __init__.py │ │ │ └── views.py │ │ ├── filters.py │ │ ├── frontend │ │ │ ├── __init__.py │ │ │ └── views.py │ │ ├── static │ │ │ ├── View2D.js │ │ │ ├── favicon.ico │ │ │ ├── jquery │ │ │ │ └── 1.5 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── jquery.js │ │ │ │ │ └── jquery.min.js │ │ │ └── style.css │ │ └── templates │ │ │ ├── add_machine.html │ │ │ ├── admin.html │ │ │ ├── build_chart.html │ │ │ ├── buildbot_monitor.html │ │ │ ├── dashboard.html │ │ │ ├── index.html │ │ │ ├── latest_release.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── machines.html │ │ │ ├── phase_description.html │ │ │ ├── phase_popup.html │ │ │ ├── user.html │ │ │ └── users.html │ ├── user.py │ └── util.py ├── setup.py └── tests │ └── basic.py ├── tasks ├── .gitignore ├── README.md ├── bin │ ├── FileCheck │ ├── build │ ├── cmake │ ├── ninja │ └── not ├── cmake │ └── caches │ │ ├── global-isel.cmake │ │ ├── opt-O0-g.cmake │ │ ├── opt-O3-flto.cmake │ │ ├── opt-O3.cmake │ │ ├── opt-Os-flto.cmake │ │ ├── opt-Os.cmake │ │ ├── opt-Oz.cmake │ │ ├── target-arm64-iphoneos.cmake │ │ ├── target-x86_64-macos.cmake │ │ ├── target-x86_64h-macos.cmake │ │ ├── util │ │ ├── arch_flags_toolchain.cmake │ │ └── xcode_sdk.cmake │ │ └── verify-machineinstrs.cmake ├── hello_world.c ├── hello_world3.sh ├── lnt-ctmark.sh ├── lnt-docu.sh ├── lnt-style.sh ├── lnt-test-suite.sh ├── lnt-tests.sh ├── lnt-testsuite.dep ├── repos │ ├── clang-stage1-configure-RA.json │ ├── compiler.json │ ├── llvm.json │ ├── lnt.json │ ├── test-suite.json │ └── zorg.json ├── task ├── tasktool │ ├── README.md │ ├── bin │ │ ├── build │ │ └── task │ ├── setup.py │ └── tasktool │ │ ├── __init__.py │ │ ├── build.py │ │ ├── hooks │ │ ├── check-clean-repo.sh │ │ ├── check-config.sh │ │ ├── exec-try-build │ │ ├── footer_sshrun │ │ ├── header │ │ ├── header_jenkinsrun │ │ ├── header_sshrun │ │ ├── header_submit │ │ ├── mk-build-common.sh │ │ ├── mk-build-id.sh │ │ ├── mk-jenkinsrun-build │ │ ├── mk-sshrun-build │ │ ├── mk-submit-build │ │ ├── mk-submit-results │ │ ├── mk-try-build │ │ ├── sshrun │ │ ├── submit │ │ └── try.sb │ │ ├── repos │ │ ├── __init__.py │ │ ├── artifact_server.py │ │ ├── existing.py │ │ ├── git.py │ │ └── url.py │ │ ├── task.py │ │ └── utils.py ├── test-suite-verify-machineinstrs.sh ├── utils │ ├── check_dependencies.sh │ ├── lnt_check_no_errors.sh │ ├── lnt_move_results.sh │ ├── lnt_submit.sh │ ├── lnt_test_suite.sh │ ├── normalize_compiler.sh │ ├── pip_install.sh │ ├── test_suite_compile.sh │ ├── venv.sh │ ├── venv_lit.sh │ └── venv_lnt.sh └── zorg-tests.sh ├── test ├── buildbot │ └── builders │ │ └── Import.py ├── jenkins │ ├── test_build.py │ └── test_monorepo_build.py └── lit.cfg └── zorg ├── __init__.py ├── buildbot ├── __init__.py ├── builders │ ├── ABITestsuitBuilder.py │ ├── AOSPBuilder.py │ ├── AnnotatedBuilder.py │ ├── CUDATestsuiteBuilder.py │ ├── ClangAndLLDBuilder.py │ ├── ClangBuilder.py │ ├── ClangLTOBuilder.py │ ├── ClangLTOBuilder3Stage.py │ ├── FuchsiaBuilder.py │ ├── LLDBBuilder.py │ ├── LLDBuilder.py │ ├── LLDPerformanceTestsuite.py │ ├── LLVMBuilder.py │ ├── LLVMGCCBuilder.py │ ├── LNTBuilder.py │ ├── LibCXXBuilder.py │ ├── LibcxxAndAbiBuilder.py │ ├── NightlytestBuilder.py │ ├── OpenMPBuilder.py │ ├── PollyBuilder.py │ ├── SanitizerBuilder.py │ ├── SanitizerBuilderII.py │ ├── SphinxDocsBuilder.py │ ├── TestBuilders.py │ ├── UnifiedTreeBuilder.py │ ├── Util.py │ ├── __init__.py │ ├── annotated │ │ ├── annotated_builder.py │ │ ├── clang-windows.py │ │ ├── sanitizer-windows.py │ │ └── util.py │ └── sanitizers │ │ ├── buildbot_android.sh │ │ ├── buildbot_android_functions.sh │ │ ├── buildbot_bootstrap_asan.sh │ │ ├── buildbot_bootstrap_msan.sh │ │ ├── buildbot_bootstrap_ubsan.sh │ │ ├── buildbot_cmake.sh │ │ ├── buildbot_fast.sh │ │ ├── buildbot_functions.sh │ │ ├── buildbot_fuzzer.sh │ │ ├── buildbot_gn.sh │ │ ├── buildbot_selector.py │ │ └── buildbot_standard.sh ├── changes │ ├── __init__.py │ ├── llvmgitpoller.py │ └── llvmpoller.py ├── commands │ ├── AnalyzerCompareCommand.py │ ├── AnnotatedCommand.py │ ├── BatchFileDownload.py │ ├── CmakeCommand.py │ ├── DejaGNUCommand.py │ ├── GTestCommand.py │ ├── LICENSE.chromium.TXT │ ├── LitTestCommand.py │ ├── MakeCommand.py │ ├── NightlyTestCommand.py │ ├── NinjaCommand.py │ ├── StandardizedTest.py │ ├── SuppressionDejaGNUCommand.py │ └── __init__.py ├── conditions │ ├── FileConditions.py │ └── __init__.py ├── process │ ├── __init__.py │ ├── factory.py │ └── properties.py ├── schedulers │ └── __init__.py └── util │ ├── ConfigEmailLookup.py │ ├── InformativeMailNotifier.py │ ├── __init__.py │ ├── artifacts.py │ ├── helpers.py │ ├── phasedbuilderutils.py │ └── reloading.py ├── jenkins ├── build.py ├── clang_build_dependencies.dep ├── common.groovy ├── email.template ├── inspect_log.py ├── job_description.template ├── jobs │ ├── .gitignore │ ├── auth.example │ ├── config │ ├── delete_old_jobs.py │ ├── description.txt │ ├── jobs │ │ ├── fail_test │ │ ├── lldb-cmake │ │ ├── lldb-cmake-matrix │ │ ├── lldb-cmake-sanitized │ │ ├── lldb-cmake-standalone │ │ ├── lnt-ctmark-aarch64-O0-g │ │ ├── lnt-ctmark-aarch64-O3-flto │ │ ├── lnt-ctmark-aarch64-Os │ │ ├── lnt-ctmark-aarch64-Oz │ │ ├── lnt-docu │ │ ├── lnt-style │ │ ├── lnt-test-suite-x86_64-O3-flto │ │ ├── lnt-test-suite-x86_64-Os-flto │ │ ├── lnt-tests │ │ ├── relay-lnt-ctmark │ │ ├── relay-lnt-test-suite │ │ ├── relay-test-suite-verify-machineinstrs │ │ ├── test-suite-verify-machineinstrs-aarch64-O0-g │ │ ├── test-suite-verify-machineinstrs-aarch64-O3 │ │ ├── test-suite-verify-machineinstrs-aarch64-globalisel-O0-g │ │ ├── test-suite-verify-machineinstrs-x86_64-O0-g │ │ ├── test-suite-verify-machineinstrs-x86_64-O3 │ │ ├── test-suite-verify-machineinstrs-x86_64h-O3 │ │ └── zorg-tests │ ├── update_all_jobs.sh │ ├── update_single_job.sh │ └── util │ │ ├── create.sh │ │ ├── delete_job.sh │ │ ├── delete_old_jobs.py │ │ ├── get.sh │ │ ├── make_pipeline.py │ │ ├── query.sh │ │ └── update.sh ├── monorepo_build.py ├── patterns.py └── relay.groovy └── llvmlab └── __init__.py /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/.arcconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/README.txt -------------------------------------------------------------------------------- /codesign/debugsign/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/.coveragerc -------------------------------------------------------------------------------- /codesign/debugsign/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/.gitignore -------------------------------------------------------------------------------- /codesign/debugsign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/README.md -------------------------------------------------------------------------------- /codesign/debugsign/dbsign/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codesign/debugsign/dbsign/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/dbsign/ansi.py -------------------------------------------------------------------------------- /codesign/debugsign/dbsign/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/dbsign/commands.py -------------------------------------------------------------------------------- /codesign/debugsign/dbsign/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/dbsign/logger.py -------------------------------------------------------------------------------- /codesign/debugsign/dbsign/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/dbsign/result.py -------------------------------------------------------------------------------- /codesign/debugsign/dbsign/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/dbsign/security.py -------------------------------------------------------------------------------- /codesign/debugsign/dbsign/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/dbsign/shell.py -------------------------------------------------------------------------------- /codesign/debugsign/debugsign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/debugsign -------------------------------------------------------------------------------- /codesign/debugsign/requirements.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | flake8 3 | mock 4 | unittest2 5 | -------------------------------------------------------------------------------- /codesign/debugsign/unittests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codesign/debugsign/unittests/test_ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/unittests/test_ansi.py -------------------------------------------------------------------------------- /codesign/debugsign/unittests/test_authdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/unittests/test_authdb.py -------------------------------------------------------------------------------- /codesign/debugsign/unittests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/unittests/test_commands.py -------------------------------------------------------------------------------- /codesign/debugsign/unittests/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/unittests/test_logger.py -------------------------------------------------------------------------------- /codesign/debugsign/unittests/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/unittests/test_result.py -------------------------------------------------------------------------------- /codesign/debugsign/unittests/test_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/unittests/test_security.py -------------------------------------------------------------------------------- /codesign/debugsign/unittests/test_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/codesign/debugsign/unittests/test_shell.py -------------------------------------------------------------------------------- /dep/dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/dep/dep.py -------------------------------------------------------------------------------- /dep/requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | typing -------------------------------------------------------------------------------- /dep/tests/Dependencies0: -------------------------------------------------------------------------------- 1 | # This is a test 2 | brew cmake >= 3.10 -------------------------------------------------------------------------------- /dep/tests/Dependencies1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/dep/tests/Dependencies1 -------------------------------------------------------------------------------- /dep/tests/assets/brew_cmake_installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/dep/tests/assets/brew_cmake_installed.json -------------------------------------------------------------------------------- /dep/tests/assets/brew_ninja_not_installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/dep/tests/assets/brew_ninja_not_installed.json -------------------------------------------------------------------------------- /dep/tests/assets/instruments_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/dep/tests/assets/instruments_output.txt -------------------------------------------------------------------------------- /dep/tests/assets/pip_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/dep/tests/assets/pip_output.json -------------------------------------------------------------------------------- /dep/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/dep/tests/conftest.py -------------------------------------------------------------------------------- /dep/tests/test_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/dep/tests/test_dep.py -------------------------------------------------------------------------------- /llvm-lnt/blacklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvm-lnt/blacklist -------------------------------------------------------------------------------- /llvm-lnt/fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvm-lnt/fabfile.py -------------------------------------------------------------------------------- /llvm-lnt/kill_zombies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvm-lnt/kill_zombies.py -------------------------------------------------------------------------------- /llvmbisect/bin/llvmlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/bin/llvmlab -------------------------------------------------------------------------------- /llvmbisect/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/docs/Makefile -------------------------------------------------------------------------------- /llvmbisect/docs/builders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/docs/builders.rst -------------------------------------------------------------------------------- /llvmbisect/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/docs/conf.py -------------------------------------------------------------------------------- /llvmbisect/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/docs/index.rst -------------------------------------------------------------------------------- /llvmbisect/docs/llvmlab_bisect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/docs/llvmlab_bisect.rst -------------------------------------------------------------------------------- /llvmbisect/llvmlab/__init__.py: -------------------------------------------------------------------------------- 1 | SR. -------------------------------------------------------------------------------- /llvmbisect/llvmlab/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/llvmlab/algorithm.py -------------------------------------------------------------------------------- /llvmbisect/llvmlab/ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/llvmlab/ci.py -------------------------------------------------------------------------------- /llvmbisect/llvmlab/gcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/llvmlab/gcs.py -------------------------------------------------------------------------------- /llvmbisect/llvmlab/llvmlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/llvmlab/llvmlab.py -------------------------------------------------------------------------------- /llvmbisect/llvmlab/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/llvmlab/scripts.py -------------------------------------------------------------------------------- /llvmbisect/llvmlab/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/llvmlab/shell.py -------------------------------------------------------------------------------- /llvmbisect/llvmlab/test_llvmlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/llvmlab/test_llvmlab.py -------------------------------------------------------------------------------- /llvmbisect/llvmlab/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/llvmlab/util.py -------------------------------------------------------------------------------- /llvmbisect/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmbisect/setup.py -------------------------------------------------------------------------------- /llvmlab/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/README.txt -------------------------------------------------------------------------------- /llvmlab/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/docs/Makefile -------------------------------------------------------------------------------- /llvmlab/docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/docs/README.txt -------------------------------------------------------------------------------- /llvmlab/docs/_templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/docs/_templates/index.html -------------------------------------------------------------------------------- /llvmlab/docs/_templates/indexsidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/docs/_templates/indexsidebar.html -------------------------------------------------------------------------------- /llvmlab/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/docs/_templates/layout.html -------------------------------------------------------------------------------- /llvmlab/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/docs/conf.py -------------------------------------------------------------------------------- /llvmlab/docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/docs/contents.rst -------------------------------------------------------------------------------- /llvmlab/docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/docs/intro.rst -------------------------------------------------------------------------------- /llvmlab/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/docs/make.bat -------------------------------------------------------------------------------- /llvmlab/llvmlab/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/TODO.txt -------------------------------------------------------------------------------- /llvmlab/llvmlab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/__init__.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/ci/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [] 2 | -------------------------------------------------------------------------------- /llvmlab/llvmlab/ci/buildbot/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Utilities for working with BuildBot. 3 | """ 4 | 5 | __all__ = [] 6 | -------------------------------------------------------------------------------- /llvmlab/llvmlab/ci/buildbot/statusclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ci/buildbot/statusclient.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/ci/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ci/config.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/ci/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ci/status.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/ci/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ci/summary.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/data.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/llvmlabtool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/llvmlabtool/__init__.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/llvmlabtool/app.wsgi.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/llvmlabtool/app.wsgi.sample -------------------------------------------------------------------------------- /llvmlab/llvmlab/llvmlabtool/lab.cfg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/llvmlabtool/lab.cfg.sample -------------------------------------------------------------------------------- /llvmlab/llvmlab/llvmlabtool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/llvmlabtool/main.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/machine.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [] 2 | -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/app.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/ci/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [] 2 | -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/ci/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/ci/views.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/filters.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [] 2 | -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/frontend/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/frontend/views.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/static/View2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/static/View2D.js -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/static/favicon.ico -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/static/jquery/1.5/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/static/jquery/1.5/LICENSE.txt -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/static/jquery/1.5/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/static/jquery/1.5/jquery.js -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/static/jquery/1.5/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/static/jquery/1.5/jquery.min.js -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/static/style.css -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/add_machine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/add_machine.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/admin.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/build_chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/build_chart.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/buildbot_monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/buildbot_monitor.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/dashboard.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/index.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/latest_release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/latest_release.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/layout.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/login.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/machines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/machines.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/phase_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/phase_description.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/phase_popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/phase_popup.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/user.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/ui/templates/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/ui/templates/users.html -------------------------------------------------------------------------------- /llvmlab/llvmlab/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/user.py -------------------------------------------------------------------------------- /llvmlab/llvmlab/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/llvmlab/util.py -------------------------------------------------------------------------------- /llvmlab/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/setup.py -------------------------------------------------------------------------------- /llvmlab/tests/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/llvmlab/tests/basic.py -------------------------------------------------------------------------------- /tasks/.gitignore: -------------------------------------------------------------------------------- 1 | /repos.try 2 | /config 3 | /results 4 | *.pyc 5 | -------------------------------------------------------------------------------- /tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/README.md -------------------------------------------------------------------------------- /tasks/bin/FileCheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/bin/FileCheck -------------------------------------------------------------------------------- /tasks/bin/build: -------------------------------------------------------------------------------- 1 | ../tasktool/bin/build -------------------------------------------------------------------------------- /tasks/bin/cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/bin/cmake -------------------------------------------------------------------------------- /tasks/bin/ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/bin/ninja -------------------------------------------------------------------------------- /tasks/bin/not: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/bin/not -------------------------------------------------------------------------------- /tasks/cmake/caches/global-isel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/global-isel.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/opt-O0-g.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/opt-O0-g.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/opt-O3-flto.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/opt-O3-flto.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/opt-O3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/opt-O3.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/opt-Os-flto.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/opt-Os-flto.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/opt-Os.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/opt-Os.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/opt-Oz.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/opt-Oz.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/target-arm64-iphoneos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/target-arm64-iphoneos.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/target-x86_64-macos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/target-x86_64-macos.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/target-x86_64h-macos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/target-x86_64h-macos.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/util/arch_flags_toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/util/arch_flags_toolchain.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/util/xcode_sdk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/util/xcode_sdk.cmake -------------------------------------------------------------------------------- /tasks/cmake/caches/verify-machineinstrs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/cmake/caches/verify-machineinstrs.cmake -------------------------------------------------------------------------------- /tasks/hello_world.c: -------------------------------------------------------------------------------- 1 | int main(void) { 2 | return 2 + 2; 3 | } 4 | -------------------------------------------------------------------------------- /tasks/hello_world3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/hello_world3.sh -------------------------------------------------------------------------------- /tasks/lnt-ctmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/lnt-ctmark.sh -------------------------------------------------------------------------------- /tasks/lnt-docu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/lnt-docu.sh -------------------------------------------------------------------------------- /tasks/lnt-style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/lnt-style.sh -------------------------------------------------------------------------------- /tasks/lnt-test-suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/lnt-test-suite.sh -------------------------------------------------------------------------------- /tasks/lnt-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/lnt-tests.sh -------------------------------------------------------------------------------- /tasks/lnt-testsuite.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/lnt-testsuite.dep -------------------------------------------------------------------------------- /tasks/repos/clang-stage1-configure-RA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/repos/clang-stage1-configure-RA.json -------------------------------------------------------------------------------- /tasks/repos/compiler.json: -------------------------------------------------------------------------------- 1 | clang-stage1-configure-RA.json -------------------------------------------------------------------------------- /tasks/repos/llvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/repos/llvm.json -------------------------------------------------------------------------------- /tasks/repos/lnt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/repos/lnt.json -------------------------------------------------------------------------------- /tasks/repos/test-suite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/repos/test-suite.json -------------------------------------------------------------------------------- /tasks/repos/zorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/repos/zorg.json -------------------------------------------------------------------------------- /tasks/task: -------------------------------------------------------------------------------- 1 | tasktool/bin/task -------------------------------------------------------------------------------- /tasks/tasktool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/README.md -------------------------------------------------------------------------------- /tasks/tasktool/bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/bin/build -------------------------------------------------------------------------------- /tasks/tasktool/bin/task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/bin/task -------------------------------------------------------------------------------- /tasks/tasktool/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/setup.py -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/build.py -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/check-clean-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/check-clean-repo.sh -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/check-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/check-config.sh -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/exec-try-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/exec-try-build -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/footer_sshrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/footer_sshrun -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/header -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/header_jenkinsrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/header_jenkinsrun -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/header_sshrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/header_sshrun -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/header_submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/header_submit -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/mk-build-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/mk-build-common.sh -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/mk-build-id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/mk-build-id.sh -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/mk-jenkinsrun-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/mk-jenkinsrun-build -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/mk-sshrun-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/mk-sshrun-build -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/mk-submit-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/mk-submit-build -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/mk-submit-results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/mk-submit-results -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/mk-try-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/mk-try-build -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/sshrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/sshrun -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/submit -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/hooks/try.sb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/hooks/try.sb -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/repos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/repos/__init__.py -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/repos/artifact_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/repos/artifact_server.py -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/repos/existing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/repos/existing.py -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/repos/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/repos/git.py -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/repos/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/repos/url.py -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/task.py -------------------------------------------------------------------------------- /tasks/tasktool/tasktool/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/tasktool/tasktool/utils.py -------------------------------------------------------------------------------- /tasks/test-suite-verify-machineinstrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/test-suite-verify-machineinstrs.sh -------------------------------------------------------------------------------- /tasks/utils/check_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/utils/check_dependencies.sh -------------------------------------------------------------------------------- /tasks/utils/lnt_check_no_errors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/utils/lnt_check_no_errors.sh -------------------------------------------------------------------------------- /tasks/utils/lnt_move_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/utils/lnt_move_results.sh -------------------------------------------------------------------------------- /tasks/utils/lnt_submit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/utils/lnt_submit.sh -------------------------------------------------------------------------------- /tasks/utils/lnt_test_suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/utils/lnt_test_suite.sh -------------------------------------------------------------------------------- /tasks/utils/normalize_compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/utils/normalize_compiler.sh -------------------------------------------------------------------------------- /tasks/utils/pip_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/utils/pip_install.sh -------------------------------------------------------------------------------- /tasks/utils/test_suite_compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/utils/test_suite_compile.sh -------------------------------------------------------------------------------- /tasks/utils/venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/utils/venv.sh -------------------------------------------------------------------------------- /tasks/utils/venv_lit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/utils/venv_lit.sh -------------------------------------------------------------------------------- /tasks/utils/venv_lnt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/utils/venv_lnt.sh -------------------------------------------------------------------------------- /tasks/zorg-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/tasks/zorg-tests.sh -------------------------------------------------------------------------------- /test/buildbot/builders/Import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/test/buildbot/builders/Import.py -------------------------------------------------------------------------------- /test/jenkins/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/test/jenkins/test_build.py -------------------------------------------------------------------------------- /test/jenkins/test_monorepo_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/test/jenkins/test_monorepo_build.py -------------------------------------------------------------------------------- /test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/test/lit.cfg -------------------------------------------------------------------------------- /zorg/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [] 2 | -------------------------------------------------------------------------------- /zorg/buildbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/__init__.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/ABITestsuitBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/ABITestsuitBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/AOSPBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/AOSPBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/AnnotatedBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/AnnotatedBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/CUDATestsuiteBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/CUDATestsuiteBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/ClangAndLLDBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/ClangAndLLDBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/ClangBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/ClangBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/ClangLTOBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/ClangLTOBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/ClangLTOBuilder3Stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/ClangLTOBuilder3Stage.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/FuchsiaBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/FuchsiaBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/LLDBBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/LLDBBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/LLDBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/LLDBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/LLDPerformanceTestsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/LLDPerformanceTestsuite.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/LLVMBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/LLVMBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/LLVMGCCBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/LLVMGCCBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/LNTBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/LNTBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/LibCXXBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/LibCXXBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/LibcxxAndAbiBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/LibcxxAndAbiBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/NightlytestBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/NightlytestBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/OpenMPBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/OpenMPBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/PollyBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/PollyBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/SanitizerBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/SanitizerBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/SanitizerBuilderII.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/SanitizerBuilderII.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/SphinxDocsBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/SphinxDocsBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/TestBuilders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/TestBuilders.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/UnifiedTreeBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/UnifiedTreeBuilder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/Util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/Util.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [] 2 | -------------------------------------------------------------------------------- /zorg/buildbot/builders/annotated/annotated_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/annotated/annotated_builder.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/annotated/clang-windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/annotated/clang-windows.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/annotated/sanitizer-windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/annotated/sanitizer-windows.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/annotated/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/annotated/util.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_android.sh -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_android_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_android_functions.sh -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_bootstrap_asan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_bootstrap_asan.sh -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_bootstrap_msan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_bootstrap_msan.sh -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_bootstrap_ubsan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_bootstrap_ubsan.sh -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_cmake.sh -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_fast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_fast.sh -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_functions.sh -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_fuzzer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_fuzzer.sh -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_gn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_gn.sh -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_selector.py -------------------------------------------------------------------------------- /zorg/buildbot/builders/sanitizers/buildbot_standard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/builders/sanitizers/buildbot_standard.sh -------------------------------------------------------------------------------- /zorg/buildbot/changes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zorg/buildbot/changes/llvmgitpoller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/changes/llvmgitpoller.py -------------------------------------------------------------------------------- /zorg/buildbot/changes/llvmpoller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/changes/llvmpoller.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/AnalyzerCompareCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/AnalyzerCompareCommand.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/AnnotatedCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/AnnotatedCommand.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/BatchFileDownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/BatchFileDownload.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/CmakeCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/CmakeCommand.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/DejaGNUCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/DejaGNUCommand.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/GTestCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/GTestCommand.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/LICENSE.chromium.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/LICENSE.chromium.TXT -------------------------------------------------------------------------------- /zorg/buildbot/commands/LitTestCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/LitTestCommand.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/MakeCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/MakeCommand.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/NightlyTestCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/NightlyTestCommand.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/NinjaCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/NinjaCommand.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/StandardizedTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/StandardizedTest.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/SuppressionDejaGNUCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/SuppressionDejaGNUCommand.py -------------------------------------------------------------------------------- /zorg/buildbot/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/commands/__init__.py -------------------------------------------------------------------------------- /zorg/buildbot/conditions/FileConditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/conditions/FileConditions.py -------------------------------------------------------------------------------- /zorg/buildbot/conditions/__init__.py: -------------------------------------------------------------------------------- 1 | import FileConditions 2 | 3 | __all__ = [] 4 | -------------------------------------------------------------------------------- /zorg/buildbot/process/__init__.py: -------------------------------------------------------------------------------- 1 | import factory 2 | 3 | __all__ = [] 4 | -------------------------------------------------------------------------------- /zorg/buildbot/process/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/process/factory.py -------------------------------------------------------------------------------- /zorg/buildbot/process/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/process/properties.py -------------------------------------------------------------------------------- /zorg/buildbot/schedulers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zorg/buildbot/util/ConfigEmailLookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/util/ConfigEmailLookup.py -------------------------------------------------------------------------------- /zorg/buildbot/util/InformativeMailNotifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/util/InformativeMailNotifier.py -------------------------------------------------------------------------------- /zorg/buildbot/util/__init__.py: -------------------------------------------------------------------------------- 1 | import ConfigEmailLookup 2 | 3 | __all__ = [] 4 | 5 | -------------------------------------------------------------------------------- /zorg/buildbot/util/artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/util/artifacts.py -------------------------------------------------------------------------------- /zorg/buildbot/util/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/util/helpers.py -------------------------------------------------------------------------------- /zorg/buildbot/util/phasedbuilderutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/util/phasedbuilderutils.py -------------------------------------------------------------------------------- /zorg/buildbot/util/reloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/buildbot/util/reloading.py -------------------------------------------------------------------------------- /zorg/jenkins/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/build.py -------------------------------------------------------------------------------- /zorg/jenkins/clang_build_dependencies.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/clang_build_dependencies.dep -------------------------------------------------------------------------------- /zorg/jenkins/common.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/common.groovy -------------------------------------------------------------------------------- /zorg/jenkins/email.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/email.template -------------------------------------------------------------------------------- /zorg/jenkins/inspect_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/inspect_log.py -------------------------------------------------------------------------------- /zorg/jenkins/job_description.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/job_description.template -------------------------------------------------------------------------------- /zorg/jenkins/jobs/.gitignore: -------------------------------------------------------------------------------- 1 | /auth 2 | /build 3 | -------------------------------------------------------------------------------- /zorg/jenkins/jobs/auth.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/auth.example -------------------------------------------------------------------------------- /zorg/jenkins/jobs/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/config -------------------------------------------------------------------------------- /zorg/jenkins/jobs/delete_old_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/delete_old_jobs.py -------------------------------------------------------------------------------- /zorg/jenkins/jobs/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/description.txt -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/fail_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/fail_test -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lldb-cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lldb-cmake -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lldb-cmake-matrix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lldb-cmake-matrix -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lldb-cmake-sanitized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lldb-cmake-sanitized -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lldb-cmake-standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lldb-cmake-standalone -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lnt-ctmark-aarch64-O0-g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lnt-ctmark-aarch64-O0-g -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lnt-ctmark-aarch64-O3-flto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lnt-ctmark-aarch64-O3-flto -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lnt-ctmark-aarch64-Os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lnt-ctmark-aarch64-Os -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lnt-ctmark-aarch64-Oz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lnt-ctmark-aarch64-Oz -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lnt-docu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lnt-docu -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lnt-style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lnt-style -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lnt-test-suite-x86_64-O3-flto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lnt-test-suite-x86_64-O3-flto -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lnt-test-suite-x86_64-Os-flto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lnt-test-suite-x86_64-Os-flto -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/lnt-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/lnt-tests -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/relay-lnt-ctmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/relay-lnt-ctmark -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/relay-lnt-test-suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/relay-lnt-test-suite -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/relay-test-suite-verify-machineinstrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/relay-test-suite-verify-machineinstrs -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-aarch64-O0-g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-aarch64-O0-g -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-aarch64-O3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-aarch64-O3 -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-aarch64-globalisel-O0-g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-aarch64-globalisel-O0-g -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-x86_64-O0-g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-x86_64-O0-g -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-x86_64-O3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-x86_64-O3 -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-x86_64h-O3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/test-suite-verify-machineinstrs-x86_64h-O3 -------------------------------------------------------------------------------- /zorg/jenkins/jobs/jobs/zorg-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/jobs/zorg-tests -------------------------------------------------------------------------------- /zorg/jenkins/jobs/update_all_jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/update_all_jobs.sh -------------------------------------------------------------------------------- /zorg/jenkins/jobs/update_single_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/update_single_job.sh -------------------------------------------------------------------------------- /zorg/jenkins/jobs/util/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/util/create.sh -------------------------------------------------------------------------------- /zorg/jenkins/jobs/util/delete_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/util/delete_job.sh -------------------------------------------------------------------------------- /zorg/jenkins/jobs/util/delete_old_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/util/delete_old_jobs.py -------------------------------------------------------------------------------- /zorg/jenkins/jobs/util/get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/util/get.sh -------------------------------------------------------------------------------- /zorg/jenkins/jobs/util/make_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/util/make_pipeline.py -------------------------------------------------------------------------------- /zorg/jenkins/jobs/util/query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/util/query.sh -------------------------------------------------------------------------------- /zorg/jenkins/jobs/util/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/jobs/util/update.sh -------------------------------------------------------------------------------- /zorg/jenkins/monorepo_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/monorepo_build.py -------------------------------------------------------------------------------- /zorg/jenkins/patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/patterns.py -------------------------------------------------------------------------------- /zorg/jenkins/relay.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/jenkins/relay.groovy -------------------------------------------------------------------------------- /zorg/llvmlab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/zorg/HEAD/zorg/llvmlab/__init__.py --------------------------------------------------------------------------------