Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Common CI Configuration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
Common CI Configuration
Merge requests
!77
Updated Python Image tag to use U24.04 version
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Updated Python Image tag to use U24.04 version
bw_ubuntu_24_04_update
into
develop
Overview
0
Commits
2
Pipelines
2
Changes
1
Merged
Bartek Wrona
requested to merge
bw_ubuntu_24_04_update
into
develop
1 week ago
Overview
0
Commits
2
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
develop
version 1
35efd55e
1 week ago
develop (base)
and
latest version
latest version
fccc10fc
2 commits,
1 week ago
version 1
35efd55e
1 commit,
1 week ago
1 file
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
templates/python_projects.gitlab-ci.yml
+
4
−
4
Options
@@ -10,8 +10,8 @@ variables:
PYTEST_LOG_DURATIONS
:
0
# do not log test durations by default
PYTEST_JUNIT_REPORT
:
"
report.xml"
# junit report location, used by GitLab
# registries:
# uses registry.gitlab.syncad.com/hive/hive/ci-base-image:ubuntu2
2
.04-1
0
PYTHON_IMAGE_TAG
:
"
@sha256:
080b16fd53013aeb9b89b00a8dfc90fecf886173f46448b05f45cee376c43330
"
# uses registry.gitlab.syncad.com/hive/hive/ci-base-image:ubuntu2
4
.04-1
PYTHON_IMAGE_TAG
:
"
@sha256:
813f18c42929193036fc4e0017981c16913766442ef8d146313c64785df29c2e
"
PYTHON_IMAGE
:
"
registry.gitlab.syncad.com/hive/hive/ci-base-image${PYTHON_IMAGE_TAG}"
# colors:
TXT_GREEN
:
"
\e
[1;32m"
@@ -63,9 +63,9 @@ variables:
script
:
-
if [ -z "${PYPROJECT_CONFIG_PATH}" ]; then MAYBE_EXPLICIT_CONFIG=""; else MAYBE_EXPLICIT_CONFIG="--config ${PYPROJECT_CONFIG_PATH}"; fi
-
echo -e "${TXT_BLUE}Linting all sources with Ruff (check)...${TXT_CLEAR}" &&
ruff ${MAYBE_EXPLICIT_CONFIG} ${PACKAGES_TO_CHECK}
ruff
check
${MAYBE_EXPLICIT_CONFIG} ${PACKAGES_TO_CHECK}
-
echo -e "${TXT_BLUE}Linting all sources with Ruff (diff)...${TXT_CLEAR}" &&
ruff --diff ${MAYBE_EXPLICIT_CONFIG} ${PACKAGES_TO_CHECK}
ruff
check
--diff ${MAYBE_EXPLICIT_CONFIG} ${PACKAGES_TO_CHECK}
.formatting_with_black_check_template
:
extends
:
.project_develop_configuration_template
Loading