Skip to content

Commit f948e73

Browse files
committed
Test 7z
1 parent c582c12 commit f948e73

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
os: [ubuntu-24.04, ubuntu-24.04-arm, ubuntu-22.04, ubuntu-22.04-arm, macos-26, macos-15, macos-15-intel, macos-14, macos-13, windows-2025, windows-2022]
10-
elasticsearch-version: [9, 8]
9+
os: [windows-2025]
10+
elasticsearch-version: [8]
1111
steps:
1212
- uses: actions/checkout@v5
1313
- uses: ./.

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function download() {
109109
const url = getUrl();
110110
if (isWindows()) {
111111
run('curl', '-s', '-o', 'elasticsearch.zip', url);
112-
run('unzip', '-q', 'elasticsearch.zip');
112+
run('7z', 'x', 'elasticsearch.zip');
113113
} else {
114114
run('wget', '-q', '-O', 'elasticsearch.tar.gz', url);
115115
run('tar', 'xfz', 'elasticsearch.tar.gz');

0 commit comments

Comments
 (0)