Skip to content

Commit a9687f2

Browse files
committed
The extra libraries are now available on Windows
1 parent 8ce6642 commit a9687f2

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ jobs:
5757
crystal --version | grep "$v"
5858
if: ${{ contains(matrix.config.crystal, '.') }}
5959
- run: |
60-
crystal eval 'require "openssl"; require "yaml"; require "xml"; require "big"'
60+
crystal eval 'require "yaml"; require "xml"; require "big"'
61+
- run: |
62+
crystal eval 'require "openssl"'
6163
if: ${{ runner.os != 'Windows' }}
6264
6365
- run: |

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
shell: bash
3636
steps:
3737
- uses: actions/checkout@v2
38-
- run: npm install --only=prod
38+
3939
- uses: crystal-lang/install-crystal@v1
4040
with: ${{ matrix.config }}
4141
id: install
@@ -57,7 +57,9 @@ jobs:
5757
crystal --version | grep "$v"
5858
if: ${{ contains(matrix.config.crystal, '.') }}
5959
- run: |
60-
crystal eval 'require "openssl"; require "yaml"; require "xml"; require "big"'
60+
crystal eval 'require "yaml"; require "xml"; require "big"'
61+
- run: |
62+
crystal eval 'require "openssl"'
6163
if: ${{ runner.os != 'Windows' }}
6264
6365
- run: |

0 commit comments

Comments
 (0)