This repository was archived by the owner on Apr 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 39
39
release_name : ${{ github.ref }}
40
40
draft : true
41
41
prerelease : false
42
+ body : |
43
+ Build ${{ env.BUILD_NUMBER }} of the BeeWare support package for Python ${{ env.PY_VERSION }}.
44
+
45
+ Includes:
46
+ * Python ${{ env.PY_VERSION }}.?
42
47
- name : Upload Release Asset to Github
43
48
uses : actions/upload-release-asset@v1
44
49
env :
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ FROM ubuntu:18.04
6
6
# Install the build requirements for Python.
7
7
RUN apt-get update -y && \
8
8
apt-get install -y \
9
- gcc make curl \
9
+ gcc make patchelf curl \
10
10
libbz2-dev \
11
11
libffi-dev \
12
12
libgdbm-compat-dev \
Original file line number Diff line number Diff line change @@ -78,6 +78,9 @@ build/python/bin/python$(PYTHON_VER): build/Python-$(PYTHON_VERSION)/python.exe
78
78
cd build/Python-$(PYTHON_VERSION ) && \
79
79
make install \
80
80
2>&1 | tee -a ../python-$(PYTHON_VERSION ) .install.log
81
+ # Make the binary and libpython3.so relocatable
82
+ patchelf --set-rpath " \$ $ORIGIN /../lib" build/python/bin/python$(PYTHON_VER )
83
+ patchelf --set-rpath " \$ $ORIGIN " build/python/lib/libpython3.so
81
84
82
85
build/python/VERSIONS : dependencies
83
86
echo " Python version: $( PYTHON_VERSION) " > build/python/VERSIONS
You can’t perform that action at this time.
0 commit comments