mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 13:35:32 +00:00
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:
parent
45e98d4f67
commit
2a6f06cb4c
3 changed files with 9 additions and 3 deletions
2
.github/workflows/icu_ci.yml
vendored
2
.github/workflows/icu_ci.yml
vendored
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue