Skip to content

Commit 10defe7

Browse files
committed
Added ICU to build matrix on linux
1 parent 8809cd5 commit 10defe7

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/build.yml

+11
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,22 @@ on:
99
jobs:
1010
linux:
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
encoding:
15+
- ICONV
16+
- ICU
17+
env:
18+
ENCODING_TYPE: ${{matrix.encoding}}
1219
steps:
1320
- uses: actions/checkout@v3
1421
- name: restore
1522
run: |
1623
sudo apt-get install -y libgtest-dev
24+
- name: restore ICU
25+
run: |
26+
sudo apt-get install -y libicu-dev
27+
if: matrix.encoding == 'ICU'
1728
- name: build
1829
run: .build/build
1930
- name: unittest

0 commit comments

Comments
 (0)