Skip to content

Commit ab9067d

Browse files
committed
ci(workflows): updated CI environment and test expectations
- Installed liblzma-dev and libncurses-dev in the conformance workflow to support AOT linking. - Updated the CLI test assertion to reflect the no-GIL Python runtime configuration.
1 parent a086326 commit ab9067d

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/conformance.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13+
- name: Install AOT link dependencies
14+
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends liblzma-dev libncurses-dev
1315
- name: Set up Python 3.14
1416
uses: actions/setup-python@v5
1517
with:
@@ -28,6 +30,8 @@ jobs:
2830
runs-on: ubuntu-latest
2931
steps:
3032
- uses: actions/checkout@v4
33+
- name: Install AOT link dependencies
34+
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends liblzma-dev libncurses-dev
3135
- name: Set up Python 3.14
3236
uses: actions/setup-python@v5
3337
with:

pon/tests/run_cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ print(repr(sysconfig.get_config_var('no_such_var_probe')))
8080
lines[1].starts_with('\'') && lines[1].ends_with('\''),
8181
"CFLAGS repr should be a Python string repr: {stdout}"
8282
);
83-
assert_eq!(lines[2], "0");
83+
assert_eq!(lines[2], "1", "pon reports Py_GIL_DISABLED=1 (no-GIL runtime)");
8484
assert_eq!(lines[3], "None");
8585
}
8686

0 commit comments

Comments
 (0)