/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/ |
H A D | test_most_recent_builds_states.py | 13 from orm.models import Project, Build, Task, Recipe, Layer, Layer_Version 26 build = Build.objects.create(project=project, build_name='fakebuild', 29 return BuildRequest.objects.create(build=build, project=project, 43 build = build_request.build 44 base_selector = '[data-latest-build-result="%s"] ' % build.id 46 # build queued; check shown as queued 47 selector = base_selector + '[data-build-state="Queued"]' 50 'Build queued', 'build should show queued status') 53 build.outcome = Build.IN_PROGRESS 54 build.recipes_to_parse = recipes_to_parse [all …]
|
H A D | test_builddashboard_page_artifacts.py | 16 from orm.models import Project, Release, BitbakeVersion, Build, Target, Package 21 """ Tests for artifacts on the build dashboard /build/X """ 32 def _get_build_dashboard(self, build): argument 34 Navigate to the build dashboard for build 36 url = reverse('builddashboard', args=(build.id,)) 41 Check whether the "Build artifacts" heading is visible (True if it 44 return self.element_exists('[data-heading="build-artifacts"]') 49 build dashboard, and return True if it is present, False otherwise. 55 If a build produced no artifacts, the artifacts heading and images 59 build = Build.objects.create(project=self.project, [all …]
|
H A D | test_builddashboard_page.py | 16 from orm.models import Project, Release, BitbakeVersion, Build, LogMessage 22 """ Tests for the build dashboard /build/X """ 35 self.build1 = Build.objects.create(project=project, 38 outcome=Build.SUCCEEDED) 40 self.build2 = Build.objects.create(project=project, 43 outcome=Build.SUCCEEDED) 45 self.build3 = Build.objects.create(project=project, 48 outcome=Build.FAILED) 52 Variable.objects.create(build=self.build1, 55 Variable.objects.create(build=self.build2, [all …]
|
H A D | test_all_builds_page.py | 19 from orm.models import BitbakeVersion, Layer, Layer_Version, Recipe, Release, Project, Build, Targe… 52 'outcome': Build.SUCCEEDED 59 'outcome': Build.FAILED 66 'outcome': Build.SUCCEEDED 69 def _get_build_time_element(self, build): argument 71 Return the HTML element containing the build time for a build 74 selector = 'div[data-latest-build-result="%s"] ' \ 75 '[data-role="data-recent-build-buildtime-field"]' % build.id 86 def _get_row_for_build(self, build): argument 87 """ Get the table row for the build from the all builds table """ [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/iftop/iftop/ |
H A D | iftop-1.0-gcc10.patch | 2 GCC 10 related build failure due to global variables in a header file with omitted 5 Example build failure output: 6 …ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:36: multiple definition of `screen_lis… 7 … ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of `peaktotal… 8 … ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of `peakrecv'… 9 … ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of `peaksent'… 10 …: ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:37: multiple definition of `totals';… 11 …ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:40: multiple definition of `screen_has… 12 …i_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:41: multiple definition of `service_has… 13 …in/ld: ui.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:36: multiple definition of `screen_lis… [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | mrbsection.js | 3 $('#latest-builds').on('click', '.cancel-build-btn', function(e){ 27 // cached version of buildData, so we can determine whether a build has 31 // returns the cached version of this build, or {} is there isn't a cached one 32 function getCached(build) { argument 33 return buildData[build.id] || {}; 36 // returns true if a build's state changed to "Succeeded", "Failed" 38 function buildFinished(build) { argument 39 var cached = getCached(build); 41 cached.state !== build.state && 42 (build.state == 'Succeeded' || build.state == 'Failed' || [all …]
|
/openbmc/openbmc/poky/meta/recipes-kernel/linux/ |
H A D | kernel-devsrc.bb | 42 rm -f $kerneldir/build 44 mkdir -p $kerneldir/build 54 # for on target purposes, we unify build and source 57 ln -s build source 63 cp --parents $(find -type f -name "Makefile*" -o -name "Kconfig*") $kerneldir/build 64 cp --parents $(find -type f -name "Build" -o -name "Build.include") $kerneldir/build 68 rm -rf $kerneldir/build/scripts 69 rm -rf $kerneldir/build/include 71 # now copy in parts from the build that we'll need later 76 cp Module.symvers $kerneldir/build [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/concurrencykit/concurrencykit/ |
H A D | 0001-build-Use-ilp32d-abi-on-riscv32-and-lp64d-on-rv64.patch | 4 Subject: [PATCH] build: Use ilp32d abi on riscv32 and lp64d on rv64 12 build/ck.build.riscv | 2 +- 13 build/ck.build.riscv64 | 2 +- 16 diff --git a/build/ck.build.riscv b/build/ck.build.riscv 18 --- a/build/ck.build.riscv 19 +++ b/build/ck.build.riscv 23 diff --git a/build/ck.build.riscv64 b/build/ck.build.riscv64 25 --- a/build/ck.build.riscv64 26 +++ b/build/ck.build.riscv64
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/ |
H A D | builddashboard.html | 6 {% block title %} {{build.get_sorted_target_list|field_values:"target"|join:", "}} {{build.machine}… 8 {% if build.get_sorted_target_list.count > 0 %} 9 {{build.get_sorted_target_list.0.target}} 12 {%if build.target_set.all.count > 1%}(+{{build.target_set.all.count|add:"-1"}}){%endif%} {{build.ma… 17 <div class="{% if build.started %}col-md-10{% else %}col-md-12{% endif %}"> 18 <div class="page-header build-data"> 19 <h1>{{build.get_sorted_target_list|field_values:"target"|join:", "}} {{build.machine}}</h1> 22 <!-- build result bar --> 23 …<div class="alert {%if build.outcome == build.SUCCEEDED%}alert-success{%elif build.outcome == buil… 24 …><strong>{%if build.outcome == build.SUCCEEDED%}Completed{%elif build.outcome == build.FAILED%}Fai… [all …]
|
H A D | basebuildpage.html | 10 var configVarUrl = "{% url 'configvars' build.id %}"; 14 $("#delete-build-confirm").click(function(){ 21 $('#delete-build-modal button[data-dismiss="modal"]').hide(); 25 url: "{% url 'xhr_build' build.id %}", 31 libtoaster.setNotification("build-deleted", 32 $("#deleted-build-message").html()); 47 $("#build-menu li a").each(function(){ 48 /* Set the page active state in the Build menu */ 66 <span style="display:none" id="deleted-build-message"> 67 …eleted 1 build: <strong>{{build.get_sorted_target_list|field_values:"target"|join:", "}} {{build.m… [all …]
|
H A D | mrb_section.html | 22 {% for build in mru %} 23 …latest-build-result="{{build.id}}" class="alert build-result {% if build.outcome == build.SUCCEEDE… 29 <a class="alert-link text-uppercase" href="{% project_url build.project %}"> 30 {{build.project.name}} 37 <div class="row" data-role="build-status-container"> 47 <!-- build main template --> 48 <script id="build-template" type="text/x-jsrender"> 66 <div class="build-state" data-build-state="<%:state%>"> 68 <%include tmpl='#cloning-repos-build-template'/%> 70 <%include tmpl='#parsing-recipes-build-template'/%> [all …]
|
H A D | projectbuilds.html | 30 {{objects.paginator.count}} project build{{objects.paginator.count|pluralize}} found 63 {% for build in objects %} {# if we have a build, just display it #} 65 … "builddashboard" build.id %}">{%if build.outcome == build.SUCCEEDED%}<i class="icon-ok-sign succe… 66 {% if build.cooker_log_path %} 68 <a href="{% url 'build_artifact' build.id "cookerlog" build.id %}"> 69 <i class="icon-download-alt" title="Download build log"></i> 75 {% for t in build.target_set.all %} 76 <a href="{% url "builddashboard" build.id %}"> 85 … <td class="machine"><a href="{% url "builddashboard" build.id %}">{{build.machine}}</a></td> 86 …<td class="started_on"><a href="{% url "builddashboard" build.id %}">{{build.started_on|date:"d/m/… [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/heaptrack/ |
H A D | heaptrack_1.2.0.bb | 39 # Change Dir: '/OE/lge/build/webos/styhead/BUILD/work/raspberrypi4_64-webos-linux/heaptrack… 41 # Run Build Command(s): ninja -v cmTC_51d86 42 …build/webos/styhead/BUILD/work/raspberrypi4_64-webos-linux/heaptrack/1.2.0/recipe-sysroot-native/u… 44 …build/webos/styhead/BUILD/work/raspberrypi4_64-webos-linux/heaptrack/1.2.0/recipe-sysroot-native/u… 58 # ninja: build stopped: subcommand failed.
|
/openbmc/openbmc/meta-security/ |
H A D | .gitlab-ci.yml | 11 - . ./oe-init-build-env $CI_PROJECT_DIR/build 12 - for x in `ls $CI_PROJECT_DIR/build/tmp/log/error-report/ | grep error_report_`; do 15 - rm -fr $CI_PROJECT_DIR/build 54 - kas shell kas/$CI_JOB_NAME.yml -c "bitbake -k security-build-image integrity-image-minimal" 55 - kas build --target harden-image-minimal kas/$CI_JOB_NAME-harden.yml 61 - kas build --target security-build-image kas/$CI_JOB_NAME.yml 67 - kas build --target security-parsec-image kas/$CI_JOB_NAME.yml 74 - kas build --target security-test-image kas/$CI_JOB_NAME.yml 75 - kas build -c testimage --target security-test-image kas/$CI_JOB_NAME.yml 80 …- kas shell kas/$CI_JOB_NAME.yml -c "bitbake -k core-image-minimal security-build-image security-… [all …]
|
/openbmc/libpldm/scripts/ |
H A D | pre-submit | 7 BUILD="$(mktemp --directory --tmpdir=.)" 8 trap 'rm -rf "$BUILD"' EXIT 32 CC=gcc CXX=g++ CFLAGS=-fanalyzer meson setup "$BUILD" 33 meson compile -C "$BUILD" 34 meson test -C "$BUILD" 38 # -DNDEBUG to the compiler for the library implementation. This build 41 meson configure --buildtype=release "$BUILD" 42 meson compile -C "$BUILD" 43 meson test -C "$BUILD" --timeout-multiplier 10 --wrapper 'valgrind --error-exitcode=1' 47 meson configure --buildtype=debug "$BUILD" [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/plymouth/plymouth/ |
H A D | 0001-Drop-libdl-references.patch | 13 meson.build | 2 -- 14 src/client/meson.build | 1 - 15 src/libply-splash-core/meson.build | 1 - 16 src/libply/meson.build | 1 - 19 diff --git a/meson.build b/meson.build 21 --- a/meson.build 22 +++ b/meson.build 32 diff --git a/src/client/meson.build b/src/client/meson.build 34 --- a/src/client/meson.build 35 +++ b/src/client/meson.build [all …]
|
/openbmc/openbmc/poky/documentation/ref-manual/ |
H A D | structure.rst | 20 The OpenEmbedded build system does not support file or directory 52 .. _structure-core-build: 54 ``build/`` 58 generated by the OpenEmbedded build system in its standard configuration 59 where the source tree is combined with the output. The :term:`Build Directory` 60 is created initially when you ``source`` the OpenEmbedded build environment 67 (commonly described as an "out of tree" build), see the 70 See the ":ref:`The Build Directory --- build/ <structure-build>`" section for details 71 about the contents of the :term:`Build Directory`. 117 OpenEmbedded selftests to verify the behavior of the build system. You [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/manual/ |
H A D | build-appliance.json | 4 … "@alias": "build-appliance.build-appliance.Build_core-image-minimal_with_build-appliance-image", 13 … "action": "Build with AUTOREV or download from Autobuilder an image for Yocto Build Appliance. ", 21 …"action": "Build qemux86 core-image-minimal using bitbake command line in the build-appliance-imag… 26 "expected_results": "core-image-minimal should build and boot. " 34 "@alias": "build-appliance.build-appliance.Build_a_image_without_error_(added_recipe)", 43 "action": "Launch Build Appliance", 44 … "expected_results": "User could build a image without error and the added package is in the image" 55 … "action": "Build a image using bitbake command line, for example, bitbake core-image-minimal", 59 …"action": "After build finished, launch the image and check if the added package built into image", 68 … "@alias": "build-appliance.build-appliance.Create_core-image-sato-sdk_using_build_appliance", [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcontrol/management/commands/ |
H A D | runbuilds.py | 13 from orm.models import Build, LogMessage, Target 25 help = "Schedules and executes build requests as possible. "\ 42 # select the build environment and the request to build 56 logger.debug("runbuilds: No build env (%s)" % e) 59 logger.info("runbuilds: starting build %s, environment %s" % 62 # let the build request know where it is being executed 66 # this triggers an async build 72 logger.error("runbuilds: Error launching build %s" % e) 86 # Cancel the pending build and report the exception to the UI 88 build = br.build, [all …]
|
/openbmc/qemu/.gitlab-ci.d/ |
H A D | buildtest-template.yml | 3 stage: build 22 - mkdir build 23 - cd build 36 - section_start build "Building QEMU" 38 - section_end build 54 - build 57 - build/**/*.p 58 - build/**/*.a.p 59 - build/**/*.c.o 60 - build/**/*.c.o.d [all …]
|
H A D | crossbuild-template.yml | 3 stage: build 22 - mkdir build 23 - cd build 33 - section_start build "Building QEMU" 34 - make -j"$JOBS" all check-build 35 - section_end build 51 # Job to cross-build specific accelerators. 58 stage: build 73 - mkdir build 74 - cd build [all …]
|
H A D | buildtest.yml | 4 build-system-alpine: 13 MAKE_CHECK_ARGS: check-build 19 - job: build-system-alpine 28 - job: build-system-alpine 34 build-system-ubuntu: 44 MAKE_CHECK_ARGS: check-build check-doc 49 - job: build-system-ubuntu 58 - job: build-system-ubuntu 64 build-system-debian: 75 MAKE_CHECK_ARGS: check-build [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/clang/clang/ |
H A D | 0027-ToolChains-Gnu.cpp-ARMLibDirs-search-also-in-lib32.patch | 6 * in some strange multilib configs we build lib32-image where 19 * fixes lib32-compiler-rt build failure: 22 CMake Error at TOPDIR/BUILD/work/raspberrypi4_64-oemllib32-linux-gnueabi/lib32-compiler-rt/16.0.6/r… 25 …"TOPDIR/BUILD/work/raspberrypi4_64-oemllib32-linux-gnueabi/lib32-compiler-rt/16.0.6/recipe-sysroot… 31 …Change Dir: TOPDIR/BUILD/work/raspberrypi4_64-oemllib32-linux-gnueabi/lib32-compiler-rt/16.0.6/bui… 33 …Build Command(s):ninja -v cmTC_84d18 && [1/2] TOPDIR/BUILD/work/raspberrypi4_64-oemllib32-linux-gn… 34 …BUILD/work/raspberrypi4_64-oemllib32-linux-gnueabi/lib32-compiler-rt/16.0.6/recipe-sysroot-native/… 36 …BUILD/work/raspberrypi4_64-oemllib32-linux-gnueabi/lib32-compiler-rt/16.0.6/recipe-sysroot-native/… 48 ninja: build stopped: subcommand failed.
|
/openbmc/openbmc/poky/meta/recipes-devtools/subversion/ |
H A D | subversion_1.14.5.bb | 50 cp -f ${STAGING_DATADIR}/aclocal/libtool.m4 ${STAGING_DATADIR}/aclocal/lt*.m4 ${S}/build/ 53 …build/build/tmp/work/x86_64-linux/subversion-native/1.8.9-r0/build/subversion/libsvn_ra_local/libs… 55 …n `/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-qa-logrotate/build/build/tmp/sysroots/x8… 56 …/yocto-worker/nightly-qa-logrotate/build/build/tmp/work/x86_64-linux/subversion-native/1.8.9-r0/su…
|
/openbmc/openbmc/poky/documentation/dev-manual/ |
H A D | custom-template-configuration-directory.rst | 6 If you are producing your own customized version of the build system for 7 use by other users, you might want to provide a custom build configuration 9 ``bblayers.conf`` that are created in a new :term:`Build Directory`) and a custom 10 message that is shown when setting up the build. This can be done by 14 This can be done by using ``bitbake-layers save-build-conf``:: 16 $ bitbake-layers save-build-conf ../../meta-alex/ test-1 21 …/work/alex/meta-alex/conf/templates/test-1 . /srv/work/alex/poky/oe-init-build-env build-try-test-1 23 The above command takes the config files from the currently active :term:`Build Directory` under ``… 27 To use those saved templates as a starting point for a build, users should point 30 …/work/alex/meta-alex/conf/templates/test-1 . /srv/work/alex/poky/oe-init-build-env build-try-test-1 [all …]
|