Skip to content

Commit

Permalink
Added ICU to build matrix on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
GreyCat committed Jul 27, 2023
1 parent 8809cd5 commit 10defe7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,22 @@ on:
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
encoding:
- ICONV
- ICU
env:
ENCODING_TYPE: ${{matrix.encoding}}
steps:
- uses: actions/checkout@v3
- name: restore
run: |
sudo apt-get install -y libgtest-dev
- name: restore ICU
run: |
sudo apt-get install -y libicu-dev
if: matrix.encoding == 'ICU'
- name: build
run: .build/build
- name: unittest
Expand Down

0 comments on commit 10defe7

Please sign in to comment.