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 0a7e77a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,21 @@ on:
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
- encoding: ICONV
- encoding: 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 0a7e77a

Please sign in to comment.