Skip to content

Commit 8da937d

Browse files
Merge pull request #2 from GoodNotes/yt/update-icu-76.1
Update main branch ICU to 76.1
2 parents 14771f1 + cba08c1 commit 8da937d

File tree

8 files changed

+32
-7
lines changed

8 files changed

+32
-7
lines changed

.github/workflows/smoke-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
run: |
1212
toolchain_path="$RUNNER_TEMP/swift"
1313
mkdir -p "$toolchain_path"
14-
curl -L "https://download.swift.org/development/ubuntu2204/swift-DEVELOPMENT-SNAPSHOT-2025-06-12-a/swift-DEVELOPMENT-SNAPSHOT-2025-06-12-a-ubuntu22.04.tar.gz" | tar xz --strip-component 1 -C "$toolchain_path"
14+
curl -L "https://download.swift.org/development/ubuntu2204/swift-DEVELOPMENT-SNAPSHOT-2025-11-25-a/swift-DEVELOPMENT-SNAPSHOT-2025-11-25-a-ubuntu22.04.tar.gz" | tar xz --strip-component 1 -C "$toolchain_path"
1515
echo "$toolchain_path/usr/bin" >> $GITHUB_PATH
1616
- uses: swiftwasm/setup-swiftwasm@v2
1717
id: setup-swiftwasm
1818
with:
19-
target: wasm32-unknown-wasi
19+
target: wasm32-unknown-wasip1
2020
- run: swift build --package-path ./Example --static-swift-stdlib
2121
- run: ./Example/.build/debug/Example
2222
- run: swift build --package-path ./Example --static-swift-stdlib --traits Minimal
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated by build-all.py
2-
#include "../../icudata/74.1/default/icudata.c"
2+
#include "../../icudata/76.1/default/icudata.c"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated by build-all.py
2-
#include "../../icudata/74.1/minimal/icudata.c"
2+
#include "../../icudata/76.1/minimal/icudata.c"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Generated by package-icudata.py
2+
#include <stdint.h>
3+
#pragma clang diagnostic ignored "-Wc23-extensions"
4+
#ifdef __cplusplus
5+
extern "C" {
6+
#endif
7+
__attribute__((aligned(16))) const uint8_t icudt76_dat[] = {
8+
#embed "icudt76l.dat"
9+
};
10+
#ifdef __cplusplus
11+
}
12+
#endif
8.62 MB
Binary file not shown.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Generated by package-icudata.py
2+
#include <stdint.h>
3+
#pragma clang diagnostic ignored "-Wc23-extensions"
4+
#ifdef __cplusplus
5+
extern "C" {
6+
#endif
7+
__attribute__((aligned(16))) const uint8_t icudt76_dat[] = {
8+
#embed "icudt76l.dat"
9+
};
10+
#ifdef __cplusplus
11+
}
12+
#endif
1.5 MB
Binary file not shown.

icu-versions.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"swift-icu-versions": {
3-
"main": "74.1",
3+
"main": "76.1",
44
"6.2": "74.1",
55
"6.1": "74.1"
66
},
77
"icu-source": {
8-
"74.1": "https://github.com/unicode-org/icu/archive/refs/tags/release-74-1.tar.gz"
8+
"74.1": "https://github.com/unicode-org/icu/archive/refs/tags/release-74-1.tar.gz",
9+
"76.1": "https://github.com/unicode-org/icu/archive/refs/tags/release-76-1.tar.gz"
910
}
10-
}
11+
}

0 commit comments

Comments
 (0)