Compare commits
3 Commits
2315422d4f
...
fix-build
| Author | SHA1 | Date | |
|---|---|---|---|
| 13308d4b4b | |||
| b20a70b860 | |||
| c86868b11c |
Vendored
+5
-6
@@ -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
|
||||
'''
|
||||
"""
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user