From a1c2729f195721b8fed0addccea87152947add86 Mon Sep 17 00:00:00 2001 From: Andre Richter Date: Mon, 29 Jun 2020 22:17:24 +0200 Subject: [PATCH] CI: bundler: Remove deprecated command --- .github/workflows/build_rpi3.yml | 3 ++- .github/workflows/build_rpi4.yml | 3 ++- .github/workflows/sanity.yml | 3 ++- .github/workflows/test_integration.yml | 3 ++- .github/workflows/test_unit.yml | 3 ++- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_rpi3.yml b/.github/workflows/build_rpi3.yml index 506fd65a..c5b8e4e3 100644 --- a/.github/workflows/build_rpi3.yml +++ b/.github/workflows/build_rpi3.yml @@ -39,7 +39,8 @@ jobs: - name: Set up Ruby run: | gem install bundler - bundle install --retry 3 --without uart + bundle config set without 'uart' + bundle install --retry 3 - name: Make run: | BSP=rpi3 bundle exec ruby utils/devtool.rb make diff --git a/.github/workflows/build_rpi4.yml b/.github/workflows/build_rpi4.yml index 810da145..56ae0582 100644 --- a/.github/workflows/build_rpi4.yml +++ b/.github/workflows/build_rpi4.yml @@ -39,7 +39,8 @@ jobs: - name: Set up Ruby run: | gem install bundler - bundle install --retry 3 --without uart + bundle config set without 'uart' + bundle install --retry 3 - name: Make run: | BSP=rpi4 bundle exec ruby utils/devtool.rb make diff --git a/.github/workflows/sanity.yml b/.github/workflows/sanity.yml index 63102b4d..5ef7b129 100644 --- a/.github/workflows/sanity.yml +++ b/.github/workflows/sanity.yml @@ -28,7 +28,8 @@ jobs: - name: Set up Ruby run: | gem install bundler - bundle install --retry 3 --without uart + bundle config set without 'uart' + bundle install --retry 3 - name: Setup misspell run: | curl -L -o ./install-misspell.sh https://git.io/misspell diff --git a/.github/workflows/test_integration.yml b/.github/workflows/test_integration.yml index b5555248..1b5a1fa2 100644 --- a/.github/workflows/test_integration.yml +++ b/.github/workflows/test_integration.yml @@ -39,7 +39,8 @@ jobs: - name: Set up Ruby run: | gem install bundler - bundle install --retry 3 --without uart + bundle config set without 'uart' + bundle install --retry 3 - name: Make all run: | bundle exec ruby utils/devtool.rb test_integration diff --git a/.github/workflows/test_unit.yml b/.github/workflows/test_unit.yml index ef85071b..f6b61247 100644 --- a/.github/workflows/test_unit.yml +++ b/.github/workflows/test_unit.yml @@ -39,7 +39,8 @@ jobs: - name: Set up Ruby run: | gem install bundler - bundle install --retry 3 --without uart + bundle config set without 'uart' + bundle install --retry 3 - name: Make all run: | bundle exec ruby utils/devtool.rb test_unit