Split the UCA checks into their own job, check UCD consistency (#562) #1087
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 )' |