Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CaosDB Crawler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
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
Code review analytics
Issue 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
caosdb
Software
CaosDB Crawler
Commits
b35ae782
Commit
b35ae782
authored
9 months ago
by
Florian Spreckelsen
Browse files
Options
Downloads
Patches
Plain Diff
PIPELINE: Update to bookworm
parent
39dfeeaa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!178
FIX: #96 Better error output for crawl.py script.
,
!171
sav/spss converter
Pipeline
#52191
passed
9 months ago
Stage: info
Stage: setup
Stage: cert
Stage: style
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.docker/Dockerfile
+6
-6
6 additions, 6 deletions
.docker/Dockerfile
.gitlab-ci.yml
+6
-6
6 additions, 6 deletions
.gitlab-ci.yml
tox.ini
+1
-1
1 addition, 1 deletion
tox.ini
with
13 additions
and
13 deletions
.docker/Dockerfile
+
6
−
6
View file @
b35ae782
FROM
debian:b
ullseye
FROM
debian:b
ookworm
RUN
apt-get update
&&
\
apt-get
install
\
curl
\
git
\
openjdk-1
1
-jdk-headless
\
openjdk-1
7
-jdk-headless
\
python3-autopep8
\
python3-pip
\
python3-pytest
\
python3-sphinx
\
tox
\
-y
RUN
pip3
install
\
RUN
pip3
install
--break-system-packages
\
pylint
\
recommonmark
\
sphinx-rtd-theme
\
...
...
@@ -20,12 +20,12 @@ ARG PYLIB
ADD
https://gitlab.indiscale.com/api/v4/projects/97/repository/commits/${PYLIB} \
pylib_version.json
RUN
git clone https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git
&&
\
cd
caosdb-pylib
&&
git checkout
${
PYLIB
}
&&
pip3
install
.
cd
caosdb-pylib
&&
git checkout
${
PYLIB
}
&&
pip3
install
--break-system-packages
.
ARG
ADVANCED
ADD
https://gitlab.indiscale.com/api/v4/projects/104/repository/commits/${ADVANCED} \
advanced_version.json
RUN
git clone https://gitlab.indiscale.com/caosdb/src/caosdb-advanced-user-tools.git
&&
\
cd
caosdb-advanced-user-tools
&&
git checkout
${
ADVANCED
}
&&
pip3
install
.[h5-crawler]
cd
caosdb-advanced-user-tools
&&
git checkout
${
ADVANCED
}
&&
pip3
install
--break-system-packages
.[h5-crawler]
COPY
. /git
# Delete .git because it is huge.
...
...
@@ -34,7 +34,7 @@ RUN rm -r /git/.git
# Install pycaosdb.ini for the tests
RUN
mv
/git/.docker/tester_pycaosdb.ini /git/integrationtests/pycaosdb.ini
RUN
cd
/git/
&&
pip3
install
.[h5-crawler,spss]
RUN
cd
/git/
&&
pip3
install
--break-system-packages
.[h5-crawler,spss]
WORKDIR
/git/integrationtests
# wait for server,
...
...
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
6
−
6
View file @
b35ae782
...
...
@@ -113,12 +113,12 @@ info:
script
:
-
*env
unittest_py3.
9
:
unittest_py3.
11
:
tags
:
[
cached-dind
]
stage
:
test
image
:
$CI_REGISTRY_IMAGE
script
:
-
python3 -c "import
pyreadstat; print(pyreadstat.__version__
)"
-
python3 -c "import
sys; assert sys.version.startswith('3.11'
)"
-
tox
unittest_py3.8
:
...
...
@@ -136,16 +136,16 @@ unittest_py3.8:
-
caosdb-crawler --help
-
pytest --cov=caosdb -vv ./unittests
unittest_py3.
10
:
unittest_py3.
9
:
tags
:
[
cached-dind
]
stage
:
test
image
:
python:3.
10
image
:
python:3.
9
script
:
*python_test_script
unittest_py3.1
1
:
unittest_py3.1
0
:
tags
:
[
cached-dind
]
stage
:
test
image
:
python:3.1
1
image
:
python:3.1
0
script
:
*python_test_script
unittest_py3.12
:
...
...
This diff is collapsed.
Click to expand it.
tox.ini
+
1
−
1
View file @
b35ae782
...
...
@@ -10,7 +10,7 @@ deps = .[h5-crawler,spss]
git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev
git+https://gitlab.indiscale.com/caosdb/src/caosdb-advanced-user-tools.git@dev
commands
=
caosdb-crawler --help
py.test
--cov
=
caos
db
-vv {posargs}
py.test
--cov
=
caos
crawler
-vv {posargs}
[flake8]
max-line-length
=
100
...
...
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