Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
picodata
Commits
295c6f21
Commit
295c6f21
authored
1 year ago
by
Дмитрий Кибирев
Committed by
Feodor Alexandrov
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
feat: add dynamic build
parent
b5489dd1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+18
-17
18 additions, 17 deletions
.gitlab-ci.yml
rpm/picodata.spec
+1
-2
1 addition, 2 deletions
rpm/picodata.spec
with
19 additions
and
19 deletions
.gitlab-ci.yml
+
18
−
17
View file @
295c6f21
...
...
@@ -218,7 +218,7 @@ test-linux:
reports
:
junit
:
junit_pytest.xml
test-mac-m1
:
.
test-mac-m1
:
extends
:
.test
tags
:
-
mac-dev-m1
...
...
@@ -437,7 +437,7 @@ pack-sources:
paths
:
-
build_sources/picodata*.tar.xz
pack-centos
:
.
pack-centos
:
extends
:
.pack
script
:
-
sed -i "s/(id -u)/(id -u) -o/g" packpack/packpack
...
...
@@ -447,7 +447,7 @@ pack-centos:
paths
:
-
build_centos/picodata*.rpm
pack-ubuntu
:
.
pack-ubuntu
:
extends
:
.pack
script
:
-
OS=ubuntu DIST=focal BUILDDIR=$PWD/build_${DIST}/ RELEASE=${DIST} packpack/packpack
...
...
@@ -457,7 +457,7 @@ pack-ubuntu:
-
build_focal/*.deb
-
build_jammy/*.deb
pack-debian
:
.
pack-debian
:
extends
:
.pack
script
:
-
OS=debian DIST=bullseye BUILDDIR=$PWD/build_debian/ RELEASE=${DIST} packpack/packpack
...
...
@@ -468,13 +468,13 @@ pack-debian:
pack-altlinux
:
extends
:
.pack
script
:
-
DOCKER_REPO=docker-picodata.binary.picodata.io/packpack/alt DOCKER_IMAGE=p10 BUILDDIR=$PWD/build_alt packpack/packpack
-
DOCKER_REPO=docker-picodata.binary.picodata.io/packpack/alt DOCKER_IMAGE=p9 BUILDDIR=$PWD/build_alt packpack/packpack
-
DOCKER_REPO=docker-picodata.binary.picodata.io/packpack/alt DOCKER_IMAGE=p10
-1
BUILDDIR=$PWD/build_alt packpack/packpack
#
- DOCKER_REPO=docker-picodata.binary.picodata.io/packpack/alt DOCKER_IMAGE=p9 BUILDDIR=$PWD/build_alt packpack/packpack
artifacts
:
paths
:
-
build_alt/picodata*.rpm
pack-redos
:
.
pack-redos
:
extends
:
.pack
script
:
-
OS=redos DIST=7.3 BUILDDIR=$PWD/build_redos/ packpack/packpack
...
...
@@ -482,7 +482,7 @@ pack-redos:
paths
:
-
build_redos/picodata*.rpm
pack-astralinux
:
.
pack-astralinux
:
extends
:
.pack
script
:
-
DOCKER_REPO=docker-picodata.binary.picodata.io/packpack/astra DOCKER_IMAGE=orel-2.12 BUILDDIR=$PWD/build_astra packpack/packpack
...
...
@@ -498,7 +498,7 @@ pack-rosalinux:
paths
:
-
build_rosa/picodata*.rpm
pack-macos-arm
:
.
pack-macos-arm
:
extends
:
.pack
tags
:
-
mac-dev-m1
...
...
@@ -542,7 +542,7 @@ pack-macos-arm:
paths
:
-
$BUILDDIR/*.tar.gz
sign-rpm-packages
:
.
sign-rpm-packages
:
variables
:
DOCKER_AUTH_CONFIG
:
$DOCKER_AUTH_RO
stage
:
sign
...
...
@@ -573,7 +573,7 @@ sign-rpm-packages:
-
pack-redos
-
pack-rosalinux
sign-astralinux-packages
:
.
sign-astralinux-packages
:
variables
:
DOCKER_AUTH_CONFIG
:
$DOCKER_AUTH_RO
stage
:
sign
...
...
@@ -593,7 +593,7 @@ sign-astralinux-packages:
dependencies
:
-
pack-astralinux
deploy-packages
:
.
deploy-packages
:
stage
:
deploy
tags
:
-
shell
...
...
@@ -679,7 +679,7 @@ deploy-packages:
-
sign-astralinux-packages
-
pack-sources
deploy-macos-arm
:
.
deploy-macos-arm
:
stage
:
deploy
tags
:
-
mac-dev-m1
...
...
@@ -741,7 +741,7 @@ deploy-docker:
needs
:
-
deploy-packages
check-deployment-rpm
:
.
check-deployment-rpm
:
extends
:
.check-deployment
parallel
:
matrix
:
...
...
@@ -766,7 +766,7 @@ check-deployment-rpm:
-
yum install -y https://download.picodata.io/tarantool-picodata/${PACKAGE}
-
yum install -y picodata-${VER}
check-deployment-deb
:
.
check-deployment-deb
:
extends
:
.check-deployment
variables
:
DEBIAN_FRONTEND
:
noninteractive
...
...
@@ -790,7 +790,7 @@ check-deployment-deb:
-
apt update
-
apt install -y picodata=${VER}-${CODENAME}
check-deployment-alt
:
.
check-deployment-alt
:
extends
:
.check-deployment
parallel
:
matrix
:
...
...
@@ -812,7 +812,7 @@ check-deployment-alt:
-
apt-get update
-
apt-get install -y picodata=${VER}
check-deployment-astra
:
.
check-deployment-astra
:
extends
:
.check-deployment
image
:
docker-picodata.binary.picodata.io/astra/orel:2.12
before_script
:
...
...
@@ -826,3 +826,4 @@ check-deployment-astra:
-
echo "deb [arch=amd64] https://download.picodata.io/tarantool-picodata/astra/ orel main" > /etc/apt/sources.list.d/picodata.list
-
apt-get update
-
apt-get install -y picodata=${VER}-1
This diff is collapsed.
Click to expand it.
rpm/picodata.spec
+
1
−
2
View file @
295c6f21
...
...
@@ -39,10 +39,9 @@ BuildRequires: libcurl-devel
BuildRequires: libicu-devel
BuildRequires: libyaml-devel
BuildRequires: libzstd-devel
#
BuildRequires: luajit-devel
BuildRequires: luajit-devel
%endif
%description
Picodata is a high performance in-memory NoSQL database and Rust
application server. Picodata supports replication, online backup and
...
...
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