File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,12 +11,14 @@ jobs:
1111 - uses : actions/setup-node@master
1212 with :
1313 node-version : " 24.x"
14+
1415 - name : Set up Python
1516 uses : actions/setup-python@v5
1617 with :
17- python-version : 3.13
18+ python-version : 3.14
19+
1820 - name : Ubuntu dependencies
19- run : sudo apt-get install libgtk-3-dev
21+ run : sudo apt-get update && sudo apt-get install -y libgtk-3-dev
2022
2123 - uses : actions/checkout@v5
2224 with :
Original file line number Diff line number Diff line change 1414 - name : Set up Python
1515 uses : actions/setup-python@v5
1616 with :
17- python-version : 3.13
17+ python-version : 3.14
1818 - uses : actions/checkout@v5
1919 with :
2020 ref : ${{ github.ref }}
Original file line number Diff line number Diff line change 1414 - name : Set up Python
1515 uses : actions/setup-python@v5
1616 with :
17- python-version : 3.13
17+ python-version : 3.14
1818 - name : " Setup NASM for windows"
1919 uses : ilammy/setup-nasm@v1
2020
Original file line number Diff line number Diff line change @@ -47,12 +47,12 @@ if (isCrossCompiling) {
4747function compileLinux ( ) {
4848 if ( target_arch !== host_arch ) {
4949 execSync (
50- `python3 configure --with-intl=small-icu -- cross-compiling --dest-cpu=${ target_arch } ` ,
50+ `python3 configure --cross-compiling --dest-cpu=${ target_arch } ` ,
5151 { cwd : path . resolve ( __dirname , '..' ) }
5252 ) ;
5353 } else {
5454 execSync (
55- `python3 configure --with-intl=small-icu -- dest-cpu=${ target_arch } ` ,
55+ `python3 configure --dest-cpu=${ target_arch } ` ,
5656 { cwd : path . resolve ( __dirname , '..' ) }
5757 ) ;
5858 }
@@ -81,12 +81,12 @@ function compileMac() {
8181 } ) ;
8282 }
8383 execSync (
84- `python3 configure --with-intl=small-icu -- cross-compiling --dest-cpu=${ target_arch } ` ,
84+ `python3 configure --cross-compiling --dest-cpu=${ target_arch } ` ,
8585 { cwd : path . resolve ( __dirname , '..' ) }
8686 ) ;
8787 } else {
8888 execSync (
89- `python3 configure --with-intl=small-icu -- dest-cpu=${ target_arch } ` ,
89+ `python3 configure --dest-cpu=${ target_arch } ` ,
9090 { cwd : path . resolve ( __dirname , '..' ) }
9191 ) ;
9292 }
You can’t perform that action at this time.
0 commit comments