This commit is contained in:
Jack Robison 2021-11-09 13:45:33 -05:00
parent ca96633652
commit 6a7eaa2fa0
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
2 changed files with 3 additions and 3 deletions

View file

@ -26,6 +26,8 @@ jobs:
src/rocksdb/librocksdb.a src/rocksdb/librocksdb.a
- name: Install requirements - name: Install requirements
run: sudo apt-get install build-essential binutils cmake run: sudo apt-get install build-essential binutils cmake
- name: Make static library files
run: make clean && make
- name: Build wheels - name: Build wheels
run: /bin/bash scripts/build.sh run: /bin/bash scripts/build.sh
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2

View file

@ -1,11 +1,9 @@
set -ex set -ex
apt install -y binutils cmake apt install -y binutils
cd lbry-rocksdb cd lbry-rocksdb
mkdir -p dist mkdir -p dist
make clean && make
function build_wheel() { function build_wheel() {
/opt/python/$1/bin/pip install cython wheel /opt/python/$1/bin/pip install cython wheel