From 10defe71cd6ecbf3120272e3a7062a0ae0951a3d Mon Sep 17 00:00:00 2001 From: Mikhail Yakshin Date: Thu, 27 Jul 2023 16:59:13 +0100 Subject: [PATCH] Added ICU to build matrix on linux --- .github/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 159a404..f3ec90c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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