Skip to content

Commit 0a7e77a

Browse files
committed
Added ICU to build matrix on linux
1 parent 8809cd5 commit 0a7e77a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,21 @@ on:
99
jobs:
1010
linux:
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
- encoding: ICONV
15+
- encoding: ICU
16+
env:
17+
ENCODING_TYPE: ${{matrix.encoding}}
1218
steps:
1319
- uses: actions/checkout@v3
1420
- name: restore
1521
run: |
1622
sudo apt-get install -y libgtest-dev
23+
- name: restore ICU
24+
run: |
25+
sudo apt-get install -y libicu-dev
26+
if: matrix.encoding == "ICU"
1727
- name: build
1828
run: .build/build
1929
- name: unittest

0 commit comments

Comments
 (0)