Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Python Rocksdb
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
Python Rocksdb
Commits
77354429
Commit
77354429
authored
9 months ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
fix
parent
6177a684
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+43
-0
43 additions, 0 deletions
.gitlab-ci.yml
with
43 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
43
−
0
View file @
77354429
stages
:
-
rocksdb
-
deploy
image
:
zoo.smok.co/build/build:latest
.build_rocksdb
:
stage
:
rocksdb
script
:
-
apt update
-
apt install -y libgflags-dev zlib1g-dev libbz2-dev liblz4-dev libzstd-dev libsnappy-dev libgflags2.2
-
git clone https://github.com/facebook/rocksdb.git
-
cd rocksdb
-
git fetch
-
git checkout v7.0.1
-
make shared_lib -j
15
-
cd ..
artifacts
:
paths
:
-
"
/usr/local/lib/pkgconfig/rocksdb.pc"
-
"
/usr/local/lib/librocksdb.a"
-
"
rocksdb/rocksdb.pc"
-
"
librocksdb.so"
-
"
/usr/include/rocksdb/*"
-
"
/usr/local/include/rocksdb/*"
build_rocksdb_x86
:
extends
:
.build_rocksdb
build_rocksdb_armv7l
:
extends
:
.build_rocksdb
image
:
zoo.smok.co/build/build:armv7l-python3.11
.build_python_rocksdb_x86
:
dependencies
:
-
build_rocksdb_x86
script
:
-
pip install --upgrade --break-system-packages Cython wheel setuptools pip pkgconfig doctor-wheel repairwheel
-
pip install -q build
-
python -m build
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment