diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2958517fdd..d195a6a7da 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -350,16 +350,22 @@ build-retroarch-ios-arm64: variables: XCPROJECT_NAME: RetroArch_iOS11_Metal XCCONFIG: GitLabCI.xcconfig + XCSCHEME: "RetroArch iOS Release" artifacts: paths: - retroarch-repo/ expire_in: 10 min script: - - xcodebuild -project pkg/apple/${XCPROJECT_NAME}.xcodeproj -config Release -scheme "RetroArch iOS Release" -xcconfig pkg/apple/iOS/GitLabCI.xcconfig build + - xcodebuild -project pkg/apple/${XCPROJECT_NAME}.xcodeproj -config Release -scheme "${XCSCHEME}" -xcconfig pkg/apple/iOS/GitLabCI.xcconfig build - mkdir .retroarch-repo - "cp -r ./* .retroarch-repo" - "mv .retroarch-repo/ retroarch-repo/" +build-retroarch-tvos-arm64: + extends: build-retroarch-ios-arm64 + variables: + XCSCHEME: "RetroArch tvOS Release" + build-retroarch-dingux-mips32: image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-dingux:latest stage: build