Skip to content

Maint fix nightlies #374

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
ruby-version: ${{ matrix.cfg.ruby }}
- name: Update rubygems and install gems
run: |
bundle config set without development
bundle config set with integration
${{ matrix.cfg.extra }}
bundle install --jobs 4 --retry 3

Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: "nightly"

on:
schedule:
- cron: "0 0 * * *"
# schedule:
# - cron: "0 0 * * *"
pull_request:
branches:
- "maint-fix-nightlies"
workflow_dispatch:


jobs:
linux_tests:
Expand Down Expand Up @@ -63,7 +68,7 @@ jobs:
run: |
bundle config set without development
${{ matrix.cfg.extra }}
bundle install --jobs 4 --retry 3
bundle install --jobs 4 --retry 3 --with integration

- name: Rubocop
run: |
Expand Down
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ end
group :integration do
# Pin due to an issue with FFI, Windows, and Facter. See FACT-3434
gem 'ffi', '1.15.5'
gem 'nkf', '=0.1.2'

end

# Find a location or specific version for a gem. place_or_version can be a
Expand Down
Loading