From 616f6fc7a7bef20f3e90398a19325be26e24ce1a Mon Sep 17 00:00:00 2001 From: Takuro Ashie Date: Tue, 22 Nov 2022 18:36:17 +0900 Subject: [PATCH] CI: Remove GitLab CI Recent days GitLab CI often fails unexpectedly due to limited CI minutes: ``` No more CI minutes available ``` Signed-off-by: Takuro Ashie --- .gitlab-ci.yml | 103 ------------------------------------------------- 1 file changed, 103 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index d1e0de3095..0000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,103 +0,0 @@ -.install-template: - before_script: - - gem update --system - - ruby -v - -.test-template: - before_script: - - gem install rake - - bundle install - - chmod 777 -R ./test - -stages: - - build - - tests - -2-6-6: - image: "ruby:2.6.6" - stage: build - extends: .install-template - script: - - bundle install --jobs=3 --retry=3 - cache: - key: "$CI_COMMIT_REF_SLUG 2-6-6" - paths: - -2-7-2: - image: "ruby:2.7.2" - stage: build - extends: .install-template - script: - - bundle install --jobs=3 --retry=3 - cache: - key: "$CI_COMMIT_REF_SLUG 2-7-2" - paths: - -3-0-0: - image: "ruby:3.0.0" - stage: build - extends: .install-template - script: - - bundle install --jobs=3 --retry=3 - cache: - key: "$CI_COMMIT_REF_SLUG 3-0-0" - paths: - -rubyhead: - image: "ruby:latest" - stage: build - extends: .install-template - script: - - bundle install --jobs=3 --retry=3 - cache: - key: "$CI_COMMIT_REF_SLUG latest" - paths: - - ./* - -2-6-6-test: - image: "ruby:2.6.6" - stage: tests - allow_failure: true - extends: .test-template - script: - - bundle exec rake test - cache: - key: "$CI_COMMIT_REF_SLUG 2-6-6" - paths: - - ./* - -2-7-2-test: - image: "ruby:2.7.2" - stage: tests - allow_failure: true - extends: .test-template - script: - - bundle exec rake test - cache: - key: "$CI_COMMIT_REF_SLUG 2-7-2" - paths: - - ./* - -3-0-0-test: - image: "ruby:3.0.0" - stage: tests - allow_failure: true - extends: .test-template - script: - - bundle exec rake test - cache: - key: "$CI_COMMIT_REF_SLUG 3-0-0" - paths: - - ./* - -rubyhead-test: - image: "ruby:latest" - stage: tests - allow_failure: true - extends: .test-template - script: - - bundle exec rake test - cache: - key: "$CI_COMMIT_REF_SLUG latest" - paths: - - ./*