Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion executors/icu4j/74/executor-icu4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
<dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
<version>78.1</version>
<version>78.3</version>
</dependency>
</dependencies>
<build>
Expand Down
12 changes: 6 additions & 6 deletions run_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
},
{
"prereq": {
"name": "Get ICU4C 78",
"version": "78.1",
"command": "bash ../executors/cpp/set_icu4c_binary.sh ../gh-cache icu4c-78.1-Ubuntu22.04-x64.tgz icu4c-78.1-sources.tgz"
"name": "Get ICU4C 78.3",
"version": "78.3",
"command": "bash ../executors/cpp/set_icu4c_binary.sh ../gh-cache icu4c-78.3-Ubuntu22.04-x64.tgz icu4c-78.3-sources.tgz"
},
"run": {
"icu_version": "icu78",
Expand Down Expand Up @@ -180,7 +180,7 @@
},
{
"prereq": {
"name": "nvm 26.3.0, icu78.1",
"name": "nvm 26.3.0, icu78.3",
"version": "26.3.0",
"command": "nvm install 26.3.0;nvm use 26.3.0 --silent"
},
Expand Down Expand Up @@ -711,8 +711,8 @@
},
{
"prereq": {
"name": "mvn-icu4j-78-shaded",
"version": "78",
"name": "mvn-icu4j-78.3-shaded",
"version": "78.3",
"command": "mvn -q -P icu78 -f ../executors/icu4j/74/executor-icu4j/pom.xml package"
},
"run": {
Expand Down
8 changes: 4 additions & 4 deletions setup_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ function download_77_1() {
fi
}

function download_78_1() {
if [[ ! -f icu4c-78.1-Ubuntu22.04-x64.tgz ]]
function download_78_3() {
if [[ ! -f icu4c-78.3-Ubuntu22.04-x64.tgz ]]
then
wget https://github.com/unicode-org/icu/releases/download/release-78.1/icu4c-78.1-Ubuntu22.04-x64.tgz
wget https://github.com/unicode-org/icu/releases/download/release-78.3/icu4c-78.3-Ubuntu22.04-x64.tgz
fi
}

Expand All @@ -124,6 +124,6 @@ function download_78_1() {
download_75_1
download_76_1
download_77_1
download_78_1
download_78_3

popd
8 changes: 4 additions & 4 deletions setup_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ function download_77_1() {
fi
}

function download_78_1() {
if [[ ! -f icu4c-78.1-sources.tgz ]]
function download_78_3() {
if [[ ! -f icu4c-78.3-sources.tgz ]]
then
curl -L -O https://github.com/unicode-org/icu/releases/download/release-78.1/icu4c-78.1-sources.tgz
curl -L -O https://github.com/unicode-org/icu/releases/download/release-78.3/icu4c-78.3-sources.tgz
fi
}

Expand All @@ -134,6 +134,6 @@ download_74_2
download_75_1
download_76_1
download_77_1
download_78_1
download_78_3

popd
6 changes: 4 additions & 2 deletions testdriver/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,10 @@ class ICU4XVersion(Enum):
# What versions of NodeJS use specific ICU versions
# https://nodejs.org/en/download/releases/
NodeICUVersionMap = {
'26.3.0': '78.3',
'24.0.0': '77.1',
'23.11.0': '76.1',
'23.3.0': '76.1',
'22.9.0': '75.1',
Comment on lines 295 to 300
'21.6.0': '74.1',
'20.1.0': '73.1',
Expand All @@ -313,8 +315,8 @@ class ICU4XVersion(Enum):
# TODO: fill this in
'1.0': '71.1',
'1.61.0': '71.1',
'2.1': '78.1',
'2.2': '78.1'
'2.1': '78.3',
'2.2': '78.3'
}

ICUVersionMap = {
Expand Down
6 changes: 6 additions & 0 deletions testgen/generators/plurals.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ def plurals_descriptor(self):
cldr_git_version = 'maint/maint-44'
elif self.icu_version == "icu75":
cldr_git_version = 'maint/maint-45'
elif self.icu_version == "icu76":
cldr_git_version = 'maint/maint-46'
elif self.icu_version == "icu77":
cldr_git_version = 'maint/maint-47'
elif self.icu_version == "icu78":
cldr_git_version = 'maint/maint-48'

cardinal_source = 'https://github.com/unicode-org/cldr/blob/%s/common/supplemental/plurals.xml' % cldr_git_version
ordinal_source = 'https://github.com/unicode-org/cldr/blob/%s/common/supplemental/ordinals.xml' % cldr_git_version
Expand Down
Loading