3 rules: # Only run this job when the Dockerfile is modified
5 - .gitlab-ci.d/opensbi.yml
6 - .gitlab-ci.d/opensbi/Dockerfile
13 IMAGE_TAG: $CI_REGISTRY_IMAGE:opensbi-cross-build
15 DOCKER_HOST: tcp://docker:2375
16 DOCKER_TLS_CERTDIR: ""
18 - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
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
28 rules: # Only run this job when ...
29 - changes: # ... roms/opensbi/ is modified (submodule updated)
32 - if: '$CI_COMMIT_REF_NAME =~ /^opensbi/' # or the branch/tag starts with 'opensbi'
34 - if: '$CI_COMMIT_MESSAGE =~ /opensbi/i' # or last commit description contains 'OpenSBI'
37 paths: # 'artifacts.zip' will contains the following files:
38 - pc-bios/opensbi-riscv32-generic-fw_dynamic.bin
39 - pc-bios/opensbi-riscv32-generic-fw_dynamic.elf
40 - pc-bios/opensbi-riscv64-generic-fw_dynamic.bin
41 - pc-bios/opensbi-riscv64-generic-fw_dynamic.elf
42 - opensbi32-generic-stdout.log
43 - opensbi32-generic-stderr.log
44 - opensbi64-generic-stdout.log
45 - opensbi64-generic-stderr.log
46 image: $CI_REGISTRY_IMAGE:opensbi-cross-build
49 script: # Clone the required submodules and build OpenSBI
50 - git submodule update --init roms/opensbi
51 - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
52 - echo "=== Using ${JOBS} simultaneous jobs ==="
53 - make -j${JOBS} -C roms/opensbi clean
54 - make -j${JOBS} -C roms opensbi32-generic 2>&1 1>opensbi32-generic-stdout.log | tee -a opensbi32-generic-stderr.log >&2
55 - make -j${JOBS} -C roms/opensbi clean
56 - make -j${JOBS} -C roms opensbi64-generic 2>&1 1>opensbi64-generic-stdout.log | tee -a opensbi64-generic-stderr.log >&2