From 2b2f32193d4481f5fe3e6f282070146d2339a415 Mon Sep 17 00:00:00 2001 From: jiikko Date: Sun, 21 Jan 2024 20:43:14 +0900 Subject: [PATCH] =?UTF-8?q?fixup!=20fixup!=20fixup!=20bundle=20without?= =?UTF-8?q?=E3=82=92=E8=A8=AD=E5=AE=9A=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 3 +-- Gemfile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 45276bf6..84a07851 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,8 +29,7 @@ commands: # NOTE: ruby2.5だとbundler2.4系に対応していないのでバージョンを固定する - run: command: | - bundle config set --local without development - gem i bundler -v 2.3.26 && bundle install --jobs 100 && bundle clean + gem i bundler -v 2.3.26 && bundle install --jobs 100 --without development && bundle clean - save_cache: key: gem-cache-v1-<< parameters.ruby-version >>-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }} paths: diff --git a/Gemfile b/Gemfile index 0026588d..06772541 100644 --- a/Gemfile +++ b/Gemfile @@ -13,8 +13,8 @@ gem "serialport" # シリアル通信をする時に必要。通常はいらな gem "timecop" group :development do - gem "solargraph", "0.50.0", require: false gem "sinatra", require: false + gem "solargraph", "0.50.0", require: false gem "stackprof", require: false gem "webrick", require: false end