From 38c7fdafd0c381c128cd039aedd4e6e4b58aa094 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Thu, 27 Jan 2022 22:23:19 -0800 Subject: [PATCH] Delete Gitlab CI config We're not using Gitlab's CI anyway, and they don't offer free Mac build bots at this time, either. It just keeps spamming me with build failure notices every time I push commits to that mirror. Signed-off-by: Christopher Snowhill --- .gitlab-ci.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 12c1b30f9..000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,23 +0,0 @@ -.macos_saas_runners: - tags: - - shared-macos-amd64 - image: macos-11-xcode-13 - -variables: - GIT_SUBMODULE_STRATEGY: recursive - -stages: - - build - -build_project: - extends: - - .macos_saas_runners - stage: build - script: - - cp "$DEV_TEAM_FILE" Xcode-config/DEVELOPMENT_TEAM.xcconfig - - xcodebuild -workspace "./Cog.xcodeproj/project.xcworkspace" -scheme Cog -configuration Release -derivedDataPath "./CogBuilds" CODE_SIGNING_ALLOWED=NO ONLY_ACTIVE_ARCH=NO build - - ditto -c -k --sequesterRsrc --keepParent "./CogBuilds/Build/Products/Release/Cog.app" "./CogBuilds/Cog.app.zip" - artifacts: - paths: - - ./CogBuilds/Cog.app.zip - expire_in: 1 week