From 99653df37dc971728a098cf9a649b20456f30e66 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sat, 10 Dec 2022 17:59:17 +0000 Subject: [PATCH] Correct ICU i18n library name. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd279175..cd852515 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,7 +87,7 @@ jobs: - name: Install packages run: sudo apt install g++-9 g++-10 - name: Test - run: ${{ matrix.compiler }} -std=${{ matrix.standard }} -I../../include *.cpp ../../src/*.cpp -o regress -licuuc -licudata -licu18n && ./regress + run: ${{ matrix.compiler }} -std=${{ matrix.standard }} -I../../include *.cpp ../../src/*.cpp -o regress -licuuc -licudata -licui18n && ./regress working-directory: ./test/regress ubuntu-bionic: runs-on: ubuntu-18.04