From 6fe67a037c07135b6b3edafca18326a824e338c3 Mon Sep 17 00:00:00 2001 From: Jeff Genovy <29107334+jefgen@users.noreply.github.com> Date: Wed, 27 Jan 2021 12:48:40 -0800 Subject: [PATCH] ICU-21473 Disable LayoutEx in GHA CI script for ICU 68, was disabled by default in ICU 69 --- .github/workflows/icu_ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/icu_ci.yml b/.github/workflows/icu_ci.yml index 58bf4fac41d..1cb8641b7c7 100644 --- a/.github/workflows/icu_ci.yml +++ b/.github/workflows/icu_ci.yml @@ -69,7 +69,7 @@ jobs: run: | mkdir build; cd build; - ../icu4c/source/runConfigureICU --enable-debug --disable-release Linux/gcc --prefix=$PREFIX --enable-tracing; + ../icu4c/source/runConfigureICU --enable-debug --disable-release Linux/gcc --enable-layoutex=no --prefix=$PREFIX --enable-tracing; make -j2; make -j2 check; ( cd ../icu4c/source/test/depstest && ./depstest.py ../../../../build/ ); @@ -95,7 +95,7 @@ jobs: run: | sudo apt-get -y install doxygen; cd icu4c/source; - ./runConfigureICU Linux; + ./runConfigureICU Linux --enable-layoutex=no; make -j 2; make -j 2 check; ( cd test/depstest && python3 depstest.py ../../../source/ ); @@ -133,7 +133,7 @@ jobs: - name: ICU4C with clang and asan run: | cd icu4c/source; - ./runConfigureICU --enable-debug --disable-release Linux --disable-renaming --enable-tracing; + ./runConfigureICU --enable-debug --disable-release Linux --enable-layoutex=no --disable-renaming --enable-tracing; make -j2; make -j2 check env: @@ -149,7 +149,7 @@ jobs: - name: ICU4C with clang and tsan run: | cd icu4c/source; - ./runConfigureICU --enable-debug --disable-release Linux --disable-renaming + ./runConfigureICU --enable-debug --disable-release Linux --enable-layoutex=no --disable-renaming make -j2; make -j2 -C test; make -j2 -C test/intltest check