Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .ci/matrix_job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,15 @@ runs_on_dockers:
build_args: '--no-cache --target unit-test',
category: 'tool',
}
- {
file: '.ci/dockerfiles/Dockerfile.ubuntu22.04',
arch: 'x86_64',
name: 'documentation_test',
uri: 'xlio/$arch/ubuntu22.04/$name',
tag: '20250219',
category: 'tool',
build_args: '--no-cache --target build',
}

runs_on_agents:
- {nodeLabel: 'beni09', category: 'base'}
Expand Down Expand Up @@ -485,6 +494,16 @@ steps:
archiveArtifacts: 'logs/'
credentialsId: 'blackduck_api_token'

- name: Documentation Test
enable: ${do_documentation_test}
containerSelector:
- "{name: 'documentation_test'}"
agentSelector:
- "{nodeLabel: 'skip-agent'}"
run: |
python3 generate_docs.py
python3 src/core/config/generate_mappings.py

pipeline_start:
run: |
printenv
Expand Down
4 changes: 4 additions & 0 deletions .ci/opensource_jjb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@
name: "do_valgrind"
default: true
description: "Use valgrind."
- bool:
name: "do_documentation_test"
default: true
description: "Execute documentation tests."
- bool:
name: "do_commit"
default: true
Expand Down