ICU-21323 Automates BRS test task of build and run testmap.

ICU-21323 Removes compiler flag.
This commit is contained in:
gnrunge 2021-03-04 18:10:54 -08:00 committed by Norbert Runge
parent 119dfa4f24
commit 90631ab807

View file

@ -212,6 +212,19 @@ jobs:
make clean;
make -j2 check
# Build and run testmap
testmap:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
cd icu4c/source;
./runConfigureICU Linux;
make -j2 check;
CONFIG_FILES=test/testmap/Makefile ./config.status;
cd test/testmap;
make check | grep '*** PASS PASS PASS, test PASSED!!!!!!!!'
# Copyright scan
copyright-scan:
runs-on: ubuntu-latest