Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build-native-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ jobs:
path: ${{ github.workspace }}/download
key: ${{ github.run_id }}-dependencies

- name: List downloads
run: |
tree $RELENV_DATA/download

- name: Build
run: |
venv/bin/python3 -m relenv build --no-pretty --arch=${{ matrix.target }} --python=${{ matrix.version }}
Expand Down
5 changes: 2 additions & 3 deletions relenv/build/darwin.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def populate_env(env, dirs):
env["LDFLAGS"] = " ".join(ldflags).format(prefix=dirs.prefix)
env["MACOSX_DEPLOYMENT_TARGET"] = MACOS_DEVELOPMENT_TARGET
cflags = [
"-L{prefix}/lib",
"-I{prefix}/include",
"-I{prefix}/include/readline",
]
Expand Down Expand Up @@ -88,8 +87,8 @@ def build_python(env, dirs, logfp):
"XZ",
download={
"url": "http://tukaani.org/xz/xz-{version}.tar.gz",
"version": "5.6.2",
"checksum": "0d6b10e4628fe08e19293c65e8dbcaade084a083",
"version": "5.8.1",
"checksum": "ed4d5589c4cfe84e1697bd02a9954b76af336931",
},
)

Expand Down
5 changes: 2 additions & 3 deletions relenv/build/linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,6 @@ def build_python(env, dirs, logfp):
},
)


build.add(
"openssl-fips-module",
build_func=build_openssl_fips,
Expand Down Expand Up @@ -519,8 +518,8 @@ def build_python(env, dirs, logfp):
"XZ",
download={
"url": "http://tukaani.org/xz/xz-{version}.tar.gz",
"version": "5.6.2",
"checksum": "0d6b10e4628fe08e19293c65e8dbcaade084a083",
"version": "5.8.1",
"checksum": "ed4d5589c4cfe84e1697bd02a9954b76af336931",
"checkfunc": tarball_version,
},
)
Expand Down
1 change: 1 addition & 0 deletions relenv/build/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ def build_python(env, dirs, logfp):
"3.11",
]:
override_dependency(dirs.source, r"sqlite-\d+.\d+.\d+.\d+", "sqlite-3.50.4.0")
override_dependency(dirs.source, r"xz-\d+.\d+.\d+", "xz-5.6.2")

arch_to_plat = {
"amd64": "x64",
Expand Down
Loading