From adae246a461960ce4f2f1f96882a39f25dde6c73 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Mon, 12 Dec 2022 18:35:57 +0000 Subject: [PATCH] Add package to CI script. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d945587a..4a37553a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,7 +69,7 @@ jobs: strategy: fail-fast: false matrix: - compiler: [ g++-9, g++-10 ] + compiler: [ g++ ] standard: [ c++11, c++14, c++17, c++2a ] steps: - uses: actions/checkout@v2 @@ -85,7 +85,7 @@ jobs: - name: Add repository run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test" - name: Install packages - run: sudo apt install g++-9 g++-10 + run: sudo apt install libicu-dev - name: Test run: ${{ matrix.compiler }} -std=${{ matrix.standard }} -I../../include *.cpp ../../src/*.cpp -o regress -licuuc -licui18n && ./regress working-directory: ./test/regress