| /openbmc/qemu/scripts/ci/setup/ | 
| H A D | gitlab-runner.yml | 10 # gitlab-runner agent. 12 - name: Installation of gitlab-runner 18         msg: 'Checking for a valid GitLab registration token' 21     - name: Create a group for the gitlab-runner service 23         name: gitlab-runner 25     - name: Create a user for the gitlab-runner service 27         user: gitlab-runner 28         group: gitlab-runner 30         comment: GitLab Runner 31         home: /home/gitlab-runner [all …] 
 | 
| H A D | vars.yml.template | 1 # The URL of the gitlab server to use, usually https://gitlab.com unless you're 2 # using a private GitLab instance 3 gitlab_runner_server_url: https://gitlab.com 4 # A mapping of the ansible to gitlab architecture nomenclature 9 # A unique token made available by GitLab to your project for registering runners
  | 
| /openbmc/qemu/docs/devel/ | 
| H A D | codebase.rst | 15 `MAINTAINERS <https://gitlab.com/qemu-project/qemu/-/blob/master/MAINTAINERS>`_ 43 The folder name links here will take you to that folder in our gitlab 48 * `accel <https://gitlab.com/qemu-project/qemu/-/tree/master/accel>`_: 53   `target <https://gitlab.com/qemu-project/qemu/-/tree/master/target>`_. 54 * `audio <https://gitlab.com/qemu-project/qemu/-/tree/master/audio>`_: 56 * `authz <https://gitlab.com/qemu-project/qemu/-/tree/master/authz>`_: 58 * `backends <https://gitlab.com/qemu-project/qemu/-/tree/master/backends>`_: 61 * `block <https://gitlab.com/qemu-project/qemu/-/tree/master/block>`_: 63 * `bsd-user <https://gitlab.com/qemu-project/qemu/-/tree/master/bsd-user>`_: 67 * `chardev <https://gitlab.com/qemu-project/qemu/-/tree/master/chardev>`_: [all …] 
 | 
| /openbmc/qemu/.gitlab-ci.d/ | 
| H A D | qemu-project.yml | 2 # https://gitlab.com/qemu-project/qemu/-/pipelines 12   - local: '/.gitlab-ci.d/base.yml' 13   - local: '/.gitlab-ci.d/stages.yml' 14   - local: '/.gitlab-ci.d/opensbi.yml' 15   - local: '/.gitlab-ci.d/containers.yml' 16   - local: '/.gitlab-ci.d/crossbuilds.yml' 17   - local: '/.gitlab-ci.d/buildtest.yml' 18   - local: '/.gitlab-ci.d/static_checks.yml' 19   - local: '/.gitlab-ci.d/custom-runners.yml' 20   - local: '/.gitlab-ci.d/cirrus.yml' [all …] 
 | 
| H A D | custom-runners.yml | 1 # The CI jobs defined here require GitLab runners installed and 4 # jobs that are intended to run on GitLab's "shared" runners. 10 # gitlab-runner.  To avoid problems that gitlab-runner can cause while 32   - local: '/.gitlab-ci.d/custom-runners/ubuntu-22.04-s390x.yml' 33   - local: '/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml' 34   - local: '/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml'
  | 
| H A D | cirrus.yml | 3 # setup has been performed on the GitLab account. 7 # when the GitLab CI job is defined, others are taken from a shell 11 # special care, because we can't just override it at the GitLab CI job 16   image: registry.gitlab.com/libvirt/libvirt-ci/cirrus-run:latest 26     - source .gitlab-ci.d/cirrus/$NAME.vars 28     - cirrus-vars <.gitlab-ci.d/cirrus/build.yml >.gitlab-ci.d/cirrus/$NAME.yml 29     - cat .gitlab-ci.d/cirrus/$NAME.yml 30     - cirrus-run -v --show-build-log always .gitlab-ci.d/cirrus/$NAME.yml
  | 
| H A D | static_checks.yml | 7     - .gitlab-ci.d/check-patch.py 20   script: .gitlab-ci.d/check-dco.py 55     - source scripts/ci/gitlab-ci-section 81     - source scripts/ci/gitlab-ci-section 93     - .gitlab-ci.d/check-units.py build/compile_commands.json
  | 
| H A D | opensbi.yml | 12         - .gitlab-ci.d/opensbi.yml 13         - .gitlab-ci.d/opensbi/Dockerfile 33         - .gitlab-ci.d/opensbi.yml 34         - .gitlab-ci.d/opensbi/Dockerfile 61                                            --tag $IMAGE_TAG .gitlab-ci.d/opensbi
  | 
| /openbmc/qemu/ | 
| H A D | .gitmodules | 3 	url = https://gitlab.com/qemu-project/seabios.git/ 6 	url = https://gitlab.com/qemu-project/SLOF.git 9 	url = https://gitlab.com/qemu-project/ipxe.git 12 	url = https://gitlab.com/qemu-project/openbios.git 15 	url = https://gitlab.com/qemu-project/qemu-palcode.git 18 	url = https://gitlab.com/qemu-project-mirrors/u-boot.git 21 	url = https://gitlab.com/qemu-project/skiboot.git 24 	url = https://gitlab.com/qemu-project/QemuMacDrivers.git 27 	url = https://gitlab.com/qemu-project/seabios-hppa.git 30 	url = https://gitlab.com/qemu-project-mirrors/u-boot-sam460ex.git [all …] 
 | 
| H A D | .gitlab-ci.yml | 2 # This is the GitLab CI configuration file for the mainstream QEMU 3 # project: https://gitlab.com/qemu-project/qemu/-/pipelines 11 # configuration path", on your GitLab CI namespace: 12 # https://docs.gitlab.com/ee/ci/pipelines/settings.html#custom-cicd-configuration-path 19 # See https://qemu-project.gitlab.io/qemu/devel/ci.html#custom-ci-cd-variables 24   - local: '/.gitlab-ci.d/qemu-project.yml'
  | 
| /openbmc/qemu/docs/devel/testing/ | 
| H A D | ci-runners.rst.inc | 6 These use the same GitLab CI's service/framework already used for all 7 other GitLab based CI jobs, but rely on additional systems, not the 8 ones provided by GitLab as "shared runners". 10 The architecture of GitLab's CI service allows different machines to 11 be set up with GitLab's "agent", called gitlab-runner, which will take 13 Here, the combination of a machine, properly configured with GitLab's 14 gitlab-runner, is called a "custom runner". 16 The GitLab CI jobs definition for the custom runners are located under:: 18   .gitlab-ci.d/custom-runners.yml 21 currently deployed in the QEMU GitLab CI and their maintainers, please [all …] 
 | 
| H A D | ci-jobs.rst.inc | 15   https://docs.gitlab.com/ee/ci/variables/#add-a-cicd-variable-to-a-project 31   https://docs.gitlab.com/ee/user/project/push_options.html#push-options-for-gitlab-cicd 78  * QEMU_CI_UPSTREAM - gitlab namespace that is considered to be 167 If you've got access to an aarch64 host that can be used as a gitlab-CI 174 aarch32 EL0 code to be used as a gitlab-CI runner, you can set this 180 If you've got access to an IBM Z host that can be used as a gitlab-CI
  | 
| /openbmc/openbmc/meta-arm/ci/ | 
| H A D | download-lockfile.py | 4 Download the lockfile.yml produced by a CI pipeline, specified by the GitLab 8 $ ./download-lockfile.py https://gitlab.com/ rossburton/meta-arm master 15 import gitlab 20 parser.add_argument("server", help="GitLab server name") 25 gl = gitlab.Gitlab(args.server)
  | 
| /openbmc/qemu/.gitlab-ci.d/cirrus/ | 
| H A D | README.rst | 4 GitLab CI shared runners only provide a docker environment running on Linux. 10 CI jobs from GitLab CI jobs so that Cirrus CI job output is integrated into 11 the main GitLab CI pipeline dashboard. 14 builds to happen when you push to your GitLab repository, you need to 33 * in the *CI/CD / Variables* section of the settings page for your GitLab 47 Once this one-time setup is complete, you can just keep pushing to your GitLab
  | 
| /openbmc/qemu/python/ | 
| H A D | PACKAGE.rst | 27 John maintains a `GitLab staging branch 28 <https://gitlab.com/jsnow/qemu/-/tree/python>`_, and there is an 29 official `GitLab mirror <https://gitlab.com/qemu-project/qemu>`_. 32 <https://gitlab.com/qemu-project/qemu/-/issues>`_ and tag ``@jsnow`` in
  | 
| /openbmc/openbmc/poky/meta/recipes-graphics/xorg-lib/ | 
| H A D | libxcvt_0.1.3.bb | 3 HOMEPAGE = "https://gitlab.freedesktop.org/xorg/lib/libxcvt" 4 BUGTRACKER = "https://gitlab.freedesktop.org/xorg/lib/libxcvt/-/issues" 9 SRC_URI = "git://gitlab.freedesktop.org/xorg/lib/libxcvt.git;protocol=https;branch=master"
  | 
| /openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/pipewire/ | 
| H A D | pipewire-media-session_0.4.2.bb | 2 HOMEPAGE = "https://gitlab.freedesktop.org/pipewire/media-session" 13 SRC_URI = "git://gitlab.freedesktop.org/pipewire/media-session.git;protocol=https;branch=master \ 21 # https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/2952
  | 
| /openbmc/openbmc/poky/meta/recipes-graphics/mesa/files/ | 
| H A D | 0001-freedreno-don-t-encode-build-path-into-binaries.patch | 13 Upstream-Status: Submitted [https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30206] 28      command: [asm, files('../.gitlab-ci/traces/afuc_test.asm'), '@OUTPUT@'], 33      command: [asm, files('../.gitlab-ci/traces/afuc_test_a7xx.asm'), '@OUTPUT@'], 41        command: [disasm, '-u', files('../.gitlab-ci/reference/afuc_test.fw')], 47        command: [disasm, '-u', files('../.gitlab-ci/reference/afuc_test_a7xx.fw')], 59          command: [cffdump, '--unit-test', args, files('../.gitlab-ci/traces/' + name + '.rd.gz')], 66        command: [crashdec, args, files('../.gitlab-ci/traces/' + name + '.devcore')],
  | 
| /openbmc/openbmc/poky/meta/recipes-gnome/libhandy/ | 
| H A D | libhandy_1.8.3.bb | 7 HOMEPAGE = "https://gitlab.gnome.org/GNOME/libhandy" 8 BUGTRACKER = "https://gitlab.gnome.org/GNOME/libhandy/-/issues" 12 SRC_URI = "git://gitlab.gnome.org/GNOME/libhandy.git;protocol=https;branch=libhandy-1-8"
  | 
| /openbmc/qemu/scripts/ci/ | 
| H A D | gitlab-ci-section | 4 # gitlab-ci-section: This is a shell script fragment which defines 6 # that GitLab will interpret as the beginning or end of a "collapsible 8 # https://docs.gitlab.com/ee/ci/yaml/script.html#expand-and-collapse-job-log-sections
  | 
| H A D | gitlab-pipeline-status | 12 Checks the GitLab pipeline status for a given commit ID 27     """Failed to communicate to gitlab.com APIs.""" 53     Returns the JSON content of an HTTP GET request to gitlab.com 55     connection = http.client.HTTPSConnection('gitlab.com') 137                         help=('The GitLab project ID. Defaults to the project ' 138                               'for https://gitlab.com/qemu-project/qemu, that '
  | 
| /openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/libwnck/files/ | 
| H A D | ef0e40d59c32d7ebeb94d242436e3144cefc174a.patch | 2 From: correctmost <136447-correctmost@users.noreply.gitlab.gnome.org> 6 Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/libwnck/-/commit/ef0e40d59c32d7ebeb94d242… 39 GitLab
  | 
| /openbmc/qemu/docs/system/riscv/ | 
| H A D | shakti-c.rst | 11 https://gitlab.com/shaktiproject/cores/shakti-soc/-/blob/master/fpga/boards/artya7-100t/c-class/REA… 41    $ git clone https://gitlab.com/behindbytes/shakti-sdk.git 53    $ wget -c https://gitlab.com/behindbytes/shakti-binaries/-/raw/master/sdk/shakti_sdk_qemu.zip 71    $ wget -c https://gitlab.com/behindbytes/shakti-binaries/-/raw/master/dts/shakti.dtb
  | 
| /openbmc/openbmc/meta-arm/documentation/ | 
| H A D | continuous-integration-and-kas.md | 9 …is using the Gitlab CI infrastructure.  This is currently being done internal to Arm, but an exter… 11 …pported in meta-arm.  All platforms are required to add a kas file and `.gitlab-ci.yml` entry as p… 50   server      GitLab server name 54 $ ./ci/download-lockfile.py https://gitlab.com/jonmason00/meta-arm master
  | 
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/openconnect/openconnect/ | 
| H A D | 0001-Shim-for-renaming-of-GNUTLS_NO_EXTENSIONS-in-GnuTLS-.patch | 7 https://gitlab.com/gnutls/gnutls/-/commit/a7c4a04e (released in v3.8.1), and 9 https://gitlab.com/gnutls/gnutls/-/commit/abfa8634, which has not yet been 14 https://gitlab.com/openconnect/openconnect/-/issues/650.
  |