Skip to content

Commit bb8d6fd

Browse files
committed
🔧 chore(ci): disable windows build (no libunistring)
1 parent 5b08a8c commit bb8d6fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎.github/workflows/release.yml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
target: [linux-x86_64, linux-aarch64, windows-x86_64]
14+
target: [linux-x86_64, linux-aarch64]
1515

1616
steps:
1717
- name: Checkout repository
@@ -20,11 +20,11 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
sudo apt-get update
23+
# TODO: Re-enable Windows target when libunistring is cross-built
24+
# sudo apt-get install -y gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64
2325
sudo apt-get install -y g++ make libunistring-dev \
2426
gcc-aarch64-linux-gnu \
25-
g++-aarch64-linux-gnu \
26-
gcc-mingw-w64-x86-64 \
27-
g++-mingw-w64-x86-64
27+
g++-aarch64-linux-gnu
2828
2929
- name: Resolve compiler for ${{ matrix.target }}
3030
id: compiler

0 commit comments

Comments
 (0)