Skip to content
Snippets Groups Projects
Unverified Commit f4bf591b authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix

parent 0cfb6215
No related branches found
No related tags found
No related merge requests found
Pipeline #61026 failed with stages
in 6 minutes and 13 seconds
...@@ -19,10 +19,10 @@ image: zoo.smok.co/build/build:latest ...@@ -19,10 +19,10 @@ image: zoo.smok.co/build/build:latest
- cmake -S. -Bbuild - cmake -S. -Bbuild
- make shared_lib -j 15 - make shared_lib -j 15
- mv include .. - mv include ..
- mv librocksdb.so .. - cp librocksdb.so.7.0.1 ../librocksdb.so
artifacts: artifacts:
paths: paths:
- "include/*" - "include/rocksdb/*"
- "librocksdb.so" - "librocksdb.so"
...@@ -31,10 +31,10 @@ image: zoo.smok.co/build/build:latest ...@@ -31,10 +31,10 @@ image: zoo.smok.co/build/build:latest
before_script: before_script:
- apt update - apt update
- apt install -y pkg-config - apt install -y pkg-config
- cp -rf include/rocksdb /usr/local/include/rocksdb - pip install --upgrade pip
- pip install --upgrade --break-system-packages Cython wheel setuptools pip pkgconfig doctor-wheel repairwheel - mv include/rocksdb /usr/local/include/rocksdb
- pip install --break-system-packages Cython wheel setuptools doctor-wheel repairwheel
script: script:
- pip install -q build
- python -m build - python -m build
artifacts: artifacts:
paths: paths:
...@@ -48,7 +48,8 @@ build_rocksdb_armv7l: ...@@ -48,7 +48,8 @@ build_rocksdb_armv7l:
extends: .build_rocksdb extends: .build_rocksdb
image: zoo.smok.co/build/build:armv7l-python3.11 image: zoo.smok.co/build/build:armv7l-python3.11
needs: [] needs: []
tags:
- armv7l
build_python_rocksdb_x86: build_python_rocksdb_x86:
extends: .before_build_python extends: .before_build_python
...@@ -61,4 +62,6 @@ build_python_rocksdb_armv7l: ...@@ -61,4 +62,6 @@ build_python_rocksdb_armv7l:
image: zoo.smok.co/build/build:armv7l-python3.11 image: zoo.smok.co/build/build:armv7l-python3.11
dependencies: dependencies:
- build_rocksdb_armv7l - build_rocksdb_armv7l
tags:
- armv7l
needs: [build_rocksdb_armv7l] needs: [build_rocksdb_armv7l]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment