Skip to content

Commit 8227f2e

Browse files
committed
fix CI
1 parent 2759e4a commit 8227f2e

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/test-and-release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
node: [12, 14, 16, 18, 20]
11+
node: [16, 18, 20]
1212
arch: [x86, x64]
1313
exclude:
1414
- { os: ubuntu-latest, arch: x86 }
@@ -21,11 +21,12 @@ jobs:
2121
with:
2222
submodules: recursive
2323
fetch-depth: 2
24-
# Force Python to 3.11 until prebuild updates to node-gyp 10
25-
- name: Use Python 3.11
24+
# Force Python to 3.10 until prebuild updates to node-gyp 10
25+
- name: Use Python 3.10
26+
if: ${{ matrix.os != 'windows-latest' }}
2627
uses: actions/setup-python@v4
2728
with:
28-
python-version: '3.11'
29+
python-version: '3.10'
2930
- name: Use node ${{ matrix.node }} ${{ matrix.arch }}
3031
uses: actions/setup-node@v4
3132
with:

binding.gyp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,8 @@
6565
}
6666
}]
6767
]
68-
}]
68+
}],
69+
'variables' : {
70+
'openssl_fips': '',
71+
}
6972
}

0 commit comments

Comments
 (0)