From 2258edaae6ac45587bf1df66746fb76bb225b4f1 Mon Sep 17 00:00:00 2001 From: cn Date: Sat, 24 Jun 2023 16:37:54 +0200 Subject: [PATCH] ci: remove usage of deprecated solargraph download-core cmd Related to https://github.com/castwide/solargraph/commit/cf1cd663077317c6402fa9450f24596ed6596cdd --- Rakefile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Rakefile b/Rakefile index 0ed78de..052fb74 100644 --- a/Rakefile +++ b/Rakefile @@ -14,13 +14,6 @@ task :solargraph do sh 'solargraph typecheck' end -namespace :solargraph do - desc 'Should be run by developer once to prepare initial solargraph usage (fill caches etc.)' - task :init do - sh 'solargraph download-core' - end -end - # renovate: datasource=github-tags depName=hadolint/hadolint hadolint_version = 'v2.12.0' @@ -78,4 +71,4 @@ end task default: [:rubocop, :spec, 'bundle:audit', :solargraph] desc 'Run all tasks desired for CI' -task ci: ['solargraph:init', :default, 'docker:lint', :build, 'docker:build', 'docker:e2e'] +task ci: [ :default, 'docker:lint', :build, 'docker:build', 'docker:e2e']