diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2021-07-09 23:55:02 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2021-07-30 03:44:44 -0600 |
| commit | a90202a673ba3d75c6aced155a8b6c3277fa2843 (patch) | |
| tree | 6fc343143ffbd959a94f4f40d113eef2b2865953 /.github | |
| parent | 25df95319183ea1aa938dff78adb63d2d41f3ea2 (diff) | |
lock bundler version in CI to workaround regression [skip ci]
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17801239..8c736e1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,6 @@ jobs: primary: primary runs-on: ${{ matrix.os }} env: - COVERAGE: ${{ matrix.primary }} BUNDLE_WITHOUT: docs SOURCE_DATE_EPOCH: '1521504000' steps: @@ -64,6 +63,9 @@ jobs: - name: Configure Nokogiri installation (Linux, macOS) if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest' run: echo 'BUNDLE_BUILD__NOKOGIRI=--use-system-libraries' >> $GITHUB_ENV + - name: Enable coverage + if: matrix.primary + run: echo 'COVERAGE=true' >> $GITHUB_ENV - name: Set AsciiMath version if: matrix.asciimath-version run: echo 'ASCIIMATH_VERSION=${{ matrix.asciimath-version }}' >> $GITHUB_ENV @@ -77,6 +79,8 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} + # NOTE lock bundler version due to https://github.com/rubygems/rubygems/issues/4748 + bundler: '2.2.22' bundler-cache: ${{ github.event_name != 'schedule' }} - name: Install dependencies (scheduled build only) if: github.event_name == 'schedule' |
