UTS46 replace disallowed_STD3_ with check in Validity Criteria #2306
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 )' |