From 8d2dc0beed852ac254f85e0f37a1aee074bfcf2e Mon Sep 17 00:00:00 2001 From: Jamie Date: Sat, 9 Mar 2024 20:44:19 -0500 Subject: [PATCH] Update mac build to use the suyu image --- .gitlab-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fc45b569ef..1410a90672 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,11 +33,10 @@ build-linux: build-mac: stage: build-mac - image: ubuntu:latest + image: suyuemu/cibuild:latest script: - - apt-get update -y - - apt-get install -y autoconf automake boost ccache ffmpeg fmt glslang hidapi libtool libusb lz4 ninja-build nlohmann-json openssl pkg-config qt5-default libsdl2-dev speex zlib1g-dev zlib zstd - - mkdir build + - git submodule update --init --depth 1 --recursive + - mkdir -p build - cd build - export Qt5_DIR="/usr/local/Qt-5.x/lib/cmake" - cmake .. -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DYUZU_USE_BUNDLED_VCPKG=OFF -DYUZU_TESTS=OFF -DENABLE_WEB_SERVICE=OFF -DENABLE_LIBUSB=OFF