Skip to content

Commit 5d97e94

Browse files
committed
CI: fixed names
1 parent e66e2d1 commit 5d97e94

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: ./siskin Rebol-Zstd.nest static-lib-x64
2424

2525
- name: Build 64bit Rebol/Zstd extension
26-
run: ./siskin Rebol-Zstd.nest -o ./brotli-windows-x64.rebx --msvc brotli-windows-x64
26+
run: ./siskin Rebol-Zstd.nest -o ./zstd-windows-x64.rebx --msvc zstd-windows-x64
2727

2828
- name: Minimal Rebol/Zstd extension test
2929
run: ./siskin --script ci-test.r3
@@ -43,16 +43,16 @@ jobs:
4343
uses: oldes/install-siskin@v0.20.5
4444

4545
- name: Build 64bit Rebol/Zstd extension
46-
run: ./siskin Rebol-Zstd.nest brotli-linux-x64
46+
run: ./siskin Rebol-Zstd.nest zstd-linux-x64
4747

4848
- name: Prepare 64bit Rebol Zstd extension
49-
run: mv ./build/brotli-linux-x64.so ./brotli-linux-x64.rebx
49+
run: mv ./build/zstd-linux-x64.so ./zstd-linux-x64.rebx
5050

5151
- name: Minimal Rebol/Zstd extension test
5252
run: ./siskin --script ci-test.r3
5353

5454
- name: Compress 64bit Rebol/Zstd extension
55-
run: gzip -9 ./brotli-linux-x64.rebx
55+
run: gzip -9 ./zstd-linux-x64.rebx
5656

5757
- uses: actions/upload-artifact@v4
5858
with:
@@ -69,25 +69,25 @@ jobs:
6969
uses: oldes/install-siskin@v0.20.5
7070

7171
- name: Build 64bit Rebol/Zstd extension
72-
run: ./siskin Rebol-Zstd.nest %brotli-macos-x64
72+
run: ./siskin Rebol-Zstd.nest %zstd-macos-x64
7373

7474
- name: Prepare 64bit Rebol Zstd extension
75-
run: mv ./build/brotli-macos-x64.dylib ./brotli-macos-x64.rebx
75+
run: mv ./build/zstd-macos-x64.dylib ./zstd-macos-x64.rebx
7676

7777
- name: Build 64bit Rebol/Zstd extension
78-
run: ./siskin Rebol-Zstd.nest brotli-macos-arm64
78+
run: ./siskin Rebol-Zstd.nest zstd-macos-arm64
7979

8080
- name: Prepare 64bit Rebol Zstd extension
81-
run: mv ./build/brotli-macos-arm64.dylib ./brotli-macos-arm64.rebx
81+
run: mv ./build/zstd-macos-arm64.dylib ./zstd-macos-arm64.rebx
8282

8383
- name: Minimal Rebol/Zstd extension test
8484
run: ./siskin --script ci-test.r3
8585

8686
- name: Compress x64 Rebol/Zstd extension
87-
run: gzip -9 ./brotli-macos-x64.rebx
87+
run: gzip -9 ./zstd-macos-x64.rebx
8888

8989
- name: Compress arm64 Rebol/Zstd extension
90-
run: gzip -9 ./brotli-macos-arm64.rebx
90+
run: gzip -9 ./zstd-macos-arm64.rebx
9191

9292
- uses: actions/upload-artifact@v4
9393
with:

ci-test.r3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ print as-yellow "Compress and decompress files in chunks."
104104

105105
compress-file: function[file][
106106
src: open/read file ;; input file
107-
out: open/new/write join file %.br ;; output file
107+
out: open/new/write join file %.zst ;; output file
108108
enc: zstd/make-encoder/level 6 ;; initialize Zstd encoder
109109
chunk-size: 65536
110110
while [not finish][

0 commit comments

Comments
 (0)