]> git.proxmox.com Git - mirror_qemu.git/blame - .gitlab-ci.d/opensbi.yml
virtio: Clarify MR transaction optimization
[mirror_qemu.git] / .gitlab-ci.d / opensbi.yml
CommitLineData
c6fc0fc1 1docker-opensbi:
d0caa0a8 2 stage: containers
c6fc0fc1
BM
3 rules: # Only run this job when the Dockerfile is modified
4 - changes:
5117ba25 5 - .gitlab-ci.d/opensbi.yml
c6fc0fc1
BM
6 - .gitlab-ci.d/opensbi/Dockerfile
7 when: always
8 image: docker:19.03.1
9 services:
10 - docker:19.03.1-dind
11 variables:
12 GIT_DEPTH: 3
13 IMAGE_TAG: $CI_REGISTRY_IMAGE:opensbi-cross-build
14 # We don't use TLS
15 DOCKER_HOST: tcp://docker:2375
16 DOCKER_TLS_CERTDIR: ""
17 before_script:
18 - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
19 script:
20 - docker pull $IMAGE_TAG || true
21 - docker build --cache-from $IMAGE_TAG --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
22 --tag $IMAGE_TAG .gitlab-ci.d/opensbi
23 - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
24 - docker push $IMAGE_TAG
25
26build-opensbi:
d0caa0a8 27 stage: build
91e9c47e 28 needs: ['docker-opensbi']
c6fc0fc1
BM
29 rules: # Only run this job when ...
30 - changes: # ... roms/opensbi/ is modified (submodule updated)
31 - roms/opensbi/*
32 when: always
33 - if: '$CI_COMMIT_REF_NAME =~ /^opensbi/' # or the branch/tag starts with 'opensbi'
34 when: always
35 - if: '$CI_COMMIT_MESSAGE =~ /opensbi/i' # or last commit description contains 'OpenSBI'
36 when: always
37 artifacts:
38 paths: # 'artifacts.zip' will contains the following files:
a52ea3e7
BM
39 - pc-bios/opensbi-riscv32-generic-fw_dynamic.bin
40 - pc-bios/opensbi-riscv32-generic-fw_dynamic.elf
41 - pc-bios/opensbi-riscv64-generic-fw_dynamic.bin
42 - pc-bios/opensbi-riscv64-generic-fw_dynamic.elf
43 - opensbi32-generic-stdout.log
44 - opensbi32-generic-stderr.log
45 - opensbi64-generic-stdout.log
46 - opensbi64-generic-stderr.log
c6fc0fc1
BM
47 image: $CI_REGISTRY_IMAGE:opensbi-cross-build
48 variables:
49 GIT_DEPTH: 3
50 script: # Clone the required submodules and build OpenSBI
51 - git submodule update --init roms/opensbi
52 - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
53 - echo "=== Using ${JOBS} simultaneous jobs ==="
54 - make -j${JOBS} -C roms/opensbi clean
a52ea3e7 55 - make -j${JOBS} -C roms opensbi32-generic 2>&1 1>opensbi32-generic-stdout.log | tee -a opensbi32-generic-stderr.log >&2
c6fc0fc1 56 - make -j${JOBS} -C roms/opensbi clean
a52ea3e7 57 - make -j${JOBS} -C roms opensbi64-generic 2>&1 1>opensbi64-generic-stdout.log | tee -a opensbi64-generic-stderr.log >&2