Skip to content

Commit 5a36a65

Browse files
committed
debug ci
1 parent 66be331 commit 5a36a65

File tree

1 file changed

+18
-13
lines changed

1 file changed

+18
-13
lines changed

.github/workflows/ci.yml

+18-13
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444
needs: lint
4545
strategy:
4646
matrix:
47-
os: [ubuntu-latest, windows-latest]
48-
ruby: [jruby-9.2.21.0, jruby-9.4.2.0, '2.7', '3.3']
47+
os: [ubuntu-latest]
48+
ruby: ['3.3']
4949
asciidoctor-version: [~]
5050
asciidoctor-diagram-version: ['~> 2.2']
5151
asciidoctor-kroki-version: [~]
@@ -57,19 +57,19 @@ jobs:
5757
ruby: '3.3'
5858
include:
5959
# test oldest Ruby 3 to ensure compatibility across full range of Ruby 3 versions
60-
- os: ubuntu-latest
61-
ruby: '3.0'
60+
#- os: ubuntu-latest
61+
# ruby: '3.0'
6262
- os: macos-latest
6363
ruby: '3.3'
6464
# test oldest permitted versions of dependencies
65-
- os: ubuntu-latest
66-
ruby: '2.7'
67-
asciidoctor-version: '2.0.10'
68-
rouge-version: '~> 2.0.0'
69-
- os: windows-latest
70-
ruby: '3.3'
71-
asciidoctor-diagram-version: ~
72-
asciidoctor-kroki-version: '0.10.0'
65+
#- os: ubuntu-latest
66+
# ruby: '2.7'
67+
# asciidoctor-version: '2.0.10'
68+
# rouge-version: '~> 2.0.0'
69+
#- os: windows-latest
70+
# ruby: '3.3'
71+
# asciidoctor-diagram-version: ~
72+
# asciidoctor-kroki-version: '0.10.0'
7373
# NOTE: enable once Asciidoctor 2.1.0 is released
7474
#- os: ubuntu-latest
7575
# ruby: '3.3'
@@ -111,7 +111,12 @@ jobs:
111111
sudo apt-get install ghostscript poppler-utils
112112
- name: Install Ghostscript and Poppler (macOS)
113113
if: matrix.os == 'macos-latest'
114-
run: brew install ghostscript poppler
114+
run: |
115+
brew unlink ghostscript
116+
wget https://raw.githubusercontent.com/Homebrew/homebrew-core/0e594be417b7947dcf7d6eb63293fcf652b7e3ae/Formula/g/ghostscript.rb
117+
brew install --formula ./ghostscript.rb
118+
brew link ghostscript
119+
brew install poppler
115120
- name: Install Ghostscript and Poppler and set GS env var (Windows)
116121
if: matrix.os == 'windows-latest'
117122
run: |

0 commit comments

Comments
 (0)