The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: add more dependencies to install-cross.sh, and bump CI image

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2272>

authored by

Simon Zeni and committed by
Rylie Pavlik
66a5b36b 748d6bc5

+10 -3
+1 -1
.gitlab-ci.yml
··· 126 126 .monado.variables.debian:bookworm: 127 127 variables: 128 128 FDO_DISTRIBUTION_VERSION: "bookworm" 129 - FDO_DISTRIBUTION_TAG: "2024-07-18" 129 + FDO_DISTRIBUTION_TAG: "2024-08-16" 130 130 131 131 # Variables for build and usage of Debian bullseye image 132 132 .monado.variables.debian:bullseye:
+1 -1
.gitlab-ci/config.yml
··· 73 73 # This image does some extra work. 74 74 - codename: bookworm 75 75 script: i386_and_proclamation_container_prep.sh 76 - tag: "2024-07-18" 76 + tag: "2024-08-16" 77 77 deb_version_suffix: bpo12 78 78 packages: 79 79 <<: *default_debian_packages
+8 -1
.gitlab-ci/install-cross.sh
··· 22 22 # they apparently can't be installed in both architectures at once 23 23 apt-get install -y --no-install-recommends --no-remove \ 24 24 "crossbuild-essential-${arch}" \ 25 + "libavcodec-dev:${arch}" \ 26 + "libbsd-dev:${arch}" \ 27 + "libcjson-dev:${arch}" \ 28 + "libegl1-mesa-dev:${arch}" \ 29 + "libeigen3-dev:${arch}" \ 25 30 "libelf-dev:${arch}" \ 26 - "libegl1-mesa-dev:${arch}" \ 27 31 "libgl1-mesa-dev:${arch}" \ 28 32 "libglvnd-dev:${arch}" \ 29 33 "libhidapi-dev:${arch}" \ 34 + "libsdl2-dev:${arch}" \ 30 35 "libudev-dev:${arch}" \ 31 36 "libusb-1.0-0-dev:${arch}" \ 32 37 "libv4l-dev:${arch}" \ 33 38 "libvulkan-dev:${arch}" \ 34 39 "libwayland-dev:${arch}" \ 35 40 "libx11-dev:${arch}" \ 41 + "libx11-xcb-dev:${arch}" \ 36 42 "libxcb-randr0-dev:${arch}" \ 37 43 "libxrandr-dev:${arch}" \ 38 44 "libxxf86vm-dev:${arch}" 45 + 39 46 40 47 if [ "$arch" != "i386" ]; then 41 48 mkdir "/var/cache/apt/archives/${arch}"