diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-05-19 13:27:10 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-06-06 16:30:01 +0200 |
commit | 1f468152fb2d461f2a5f8838a3bea9fd6aaa2207 (patch) | |
tree | d963b27feff913cafd4f50a0473750013ca71c5f /.gitlab-ci.d/buildtest-template.yml | |
parent | d2dfe0b506e47e1409b29b65acb098d707532149 (diff) | |
download | qemu-1f468152fb2d461f2a5f8838a3bea9fd6aaa2207.zip qemu-1f468152fb2d461f2a5f8838a3bea9fd6aaa2207.tar.gz qemu-1f468152fb2d461f2a5f8838a3bea9fd6aaa2207.tar.bz2 |
build: remove git submodule handling from main makefile
The only remaining user of submodules at build time is roms/SLOF,
which is handled in pc-bios/s390-ccw/Makefile. Remove the relevant
code from the main makefile.
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to '.gitlab-ci.d/buildtest-template.yml')
-rw-r--r-- | .gitlab-ci.d/buildtest-template.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.gitlab-ci.d/buildtest-template.yml b/.gitlab-ci.d/buildtest-template.yml index d01d504..76ff1df 100644 --- a/.gitlab-ci.d/buildtest-template.yml +++ b/.gitlab-ci.d/buildtest-template.yml @@ -42,8 +42,7 @@ stage: test image: $CI_REGISTRY_IMAGE/qemu/$IMAGE:latest script: - - scripts/git-submodule.sh update - roms/SLOF $(sed -n '/GIT_SUBMODULES=/ s/.*=// p' build/config-host.mak) + - scripts/git-submodule.sh update roms/SLOF - meson subprojects download $(cd build/subprojects && echo *) - cd build - find . -type f -exec touch {} + |