Skip to content

Partially test consistency of grapheme cluster segmentation with canonical equivalence, and fix it for LGCs #1448

Partially test consistency of grapheme cluster segmentation with canonical equivalence, and fix it for LGCs

Partially test consistency of grapheme cluster segmentation with canonical equivalence, and fix it for LGCs #1448

Workflow file for this run

name: Build charcheck
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
# strategy:
# matrix:
# compiler: [gcc, clang]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Fetch ICU
run: '(cd c/char-check && sh fetch-icu-bin.sh)'
- name: Build
run: '(cd c/char-check && clang++ -o char-check -licuuc -licui18n -licuio -licudata -Wl,-rpath -Wl,`pwd`/icu/usr/local/lib char-check.cpp -L`pwd`/icu/usr/local/lib -I icu/usr/local/include/ && ./char-check ABCD )'
# run: '(cd c/char-check && make ICUBLD=icu/usr/local/ char-check )'