ICU-22193 Make run-with-stubdata work with ubuntu-latest.

It remains unknown when and why this changed, but nowadays the required
data files are to be found in a subdirectory named "build".
This commit is contained in:
Fredrik Roubert 2022-12-15 16:21:52 +09:00 committed by Fredrik Roubert
parent 45e98d4f67
commit 2a6f06cb4c
3 changed files with 9 additions and 3 deletions

View file

@ -309,7 +309,7 @@ jobs:
# Run ICU4C tests with stubdata.
run-with-stubdata:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

View file

@ -380,7 +380,10 @@ const char *ctest_dataOutDir()
*/
#if defined (U_TOPBUILDDIR)
{
dataOutDir = U_TOPBUILDDIR "data"U_FILE_SEP_STRING"out"U_FILE_SEP_STRING;
dataOutDir = U_TOPBUILDDIR
"data" U_FILE_SEP_STRING
"out" U_FILE_SEP_STRING
"build" U_FILE_SEP_STRING;
}
#else

View file

@ -441,7 +441,10 @@ void IntlTest::setICU_DATA() {
#if defined (U_TOPBUILDDIR)
{
static char env_string[] = U_TOPBUILDDIR "data" U_FILE_SEP_STRING "out" U_FILE_SEP_STRING;
static char env_string[] = U_TOPBUILDDIR
"data" U_FILE_SEP_STRING
"out" U_FILE_SEP_STRING
"build" U_FILE_SEP_STRING;
u_setDataDirectory(env_string);
return;
}