We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2891d27 commit 8f82a11Copy full SHA for 8f82a11
1 file changed
.github/workflows/test.yaml
@@ -21,6 +21,12 @@ jobs:
21
steps:
22
- uses: actions/checkout@v3
23
24
+ - name: Use Git OpenSSL 1.1 on Windows
25
+ if: matrix.os == 'windows-latest'
26
+ shell: pwsh
27
+ run: |
28
+ "C:\Program Files\Git\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
29
+
30
- uses: jiro4989/setup-nim-action@v1
31
with:
32
nim-version: ${{ matrix.nim-version }}
@@ -30,12 +36,6 @@ jobs:
36
if: matrix.os == 'ubuntu-latest'
37
run: sudo apt-get update && sudo apt-get install -y libpcre3-dev libpcre3
38
33
- - name: Use Git OpenSSL 1.1 on Windows
34
- if: matrix.os == 'windows-latest'
35
- shell: pwsh
- run: |
- "C:\Program Files\Git\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
-
39
- run: "npm install node-gyp -g"
40
- run: "npm install cmake-js -g"
41
0 commit comments