Skip to content

Commit 97293f0

Browse files
authored
Fix build warnings (#3742)
1 parent 9b812c3 commit 97293f0

2 files changed

Lines changed: 15 additions & 13 deletions

File tree

.github/workflows/run-python-test.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,21 @@ jobs:
3737
fail-fast: false
3838
matrix:
3939
include:
40-
- os: ubuntu-24.04
40+
- os: ubuntu-latest
4141
python-version: "3.8"
42-
- os: ubuntu-24.04
42+
- os: ubuntu-latest
4343
python-version: "3.9"
4444

45-
- os: ubuntu-24.04
45+
- os: ubuntu-latest
4646
python-version: "3.10"
47-
- os: ubuntu-24.04
47+
- os: ubuntu-latest
4848
python-version: "3.11"
49-
- os: ubuntu-24.04
49+
- os: ubuntu-latest
5050
python-version: "3.12"
51-
- os: ubuntu-24.04
51+
- os: ubuntu-latest
5252
python-version: "3.13"
53+
- os: ubuntu-latest
54+
python-version: "3.14"
5355

5456
steps:
5557
- uses: actions/checkout@v4

cmake/openfst.cmake

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
function(download_openfst)
44
include(FetchContent)
55

6-
set(openfst_URL "https://github.com/csukuangfj/openfst/archive/refs/tags/v1.8.5-2026-04-11.tar.gz")
7-
set(openfst_HASH "SHA256=57fbc4b950ae81b1a0e1e298af15652da968a6723a592b7874e9b4027a80a5b4")
6+
set(openfst_URL "https://github.com/csukuangfj/openfst/archive/refs/tags/v1.8.5-2026-07-09.tar.gz")
7+
set(openfst_HASH "SHA256=2ff712a32952fcb01d351121a6bc8ccf4fdc6b2aa06ce8df2b3095dedd518c0e")
88

99
# If you don't have access to the Internet,
1010
# please pre-download it
1111
set(possible_file_locations
12-
$ENV{HOME}/Downloads/openfst-1.8.5-2026-04-11.tar.gz
13-
${CMAKE_SOURCE_DIR}/openfst-1.8.5-2026-04-11.tar.gz
14-
${CMAKE_BINARY_DIR}/openfst-1.8.5-2026-04-11.tar.gz
15-
/tmp/openfst-1.8.5-2026-04-11.tar.gz
16-
/star-fj/fangjun/download/github/openfst-1.8.5-2026-04-11.tar.gz
12+
$ENV{HOME}/Downloads/openfst-1.8.5-2026-07-09.tar.gz
13+
${CMAKE_SOURCE_DIR}/openfst-1.8.5-2026-07-09.tar.gz
14+
${CMAKE_BINARY_DIR}/openfst-1.8.5-2026-07-09.tar.gz
15+
/tmp/openfst-1.8.5-2026-07-09.tar.gz
16+
/star-fj/fangjun/download/github/openfst-1.8.5-2026-07-09.tar.gz
1717
)
1818

1919
foreach(f IN LISTS possible_file_locations)

0 commit comments

Comments
 (0)