Skip to content

Commit 1dc75eb

Browse files
committed
[ fix ][ ci ] Include text-icu DLLs on Windows
1 parent 983226b commit 1dc75eb

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/test-windows.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,14 @@ jobs:
101101
cp -r $datadir zip/data
102102
cp $executable zip/
103103
104+
# include text-icu DLLs
105+
$mingw64bin = (stack path --extra-library-dirs).split(", ") -match "\\bin"
106+
ls $mingw64bin
107+
cp (ls $mingw64bin *libicudt*) zip/
108+
cp (ls $mingw64bin *libicuin*) zip/
109+
cp (ls $mingw64bin *libicuuc*) zip/
110+
ls zip
111+
104112
# compress
105113
cd zip
106114
Compress-Archive * als-windows.zip

package.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: agda-language-server
2-
version: 0.1.0.3
2+
version: 0.1.1
33
github: "banacorn/agda-language-server"
44
license: MIT
55
author: "Ting-Gian LUA"

0 commit comments

Comments
 (0)