Compare commits

3 Commits

Author SHA1 Message Date
Stephen Simpson
13308d4b4b update 2025-11-24 16:28:17 -06:00
Stephen Simpson
b20a70b860 update 2025-11-24 15:52:42 -06:00
Stephen Simpson
c86868b11c update 2025-11-24 15:26:41 -06:00

11
Jenkinsfile vendored
View File

@@ -47,7 +47,6 @@ spec:
options {
buildDiscarder(logRotator(numToKeepStr: '10'))
timeout(time: 2, unit: 'HOURS')
timestamps()
}
stages {
@@ -71,18 +70,18 @@ spec:
stage('Build Man Pages') {
steps {
container('docker-cli') {
sh '''
sh """
# Create output directories
mkdir -p ./html ./tmp
# Run the container to build man pages
docker run --rm \
-v "$(pwd)/html:/data/html" \
-v "$(pwd)/tmp:/data/tmp" \
-v "\$(pwd)/html:/app/html" \
-v "\$(pwd)/tmp:/data/tmp" \
rocky-man:${BUILD_NUMBER} \
--versions ${VERSIONS} \
--versions ${params.VERSIONS} \
--verbose
'''
"""
}
}
}