Skip to content

Commit a303ad4

Browse files
committed
Next attempt at compiling this thing
1 parent 59c73c8 commit a303ad4

4 files changed

Lines changed: 10 additions & 8 deletions

File tree

.github/workflows/linux.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

.github/workflows/mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
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 }}

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
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

qode/build.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ if (isCrossCompiling) {
4747
function 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
}

0 commit comments

Comments
 (0)