Fantom-foundation / Norma

Integration project of Carmen and Tosca
GNU Lesser General Public License v3.0
2 stars 9 forks source link

Collapse upload artifacts #240

Closed rpl-ffl closed 1 month ago

rpl-ffl commented 2 months ago
        post {
        always {
            script {
                def artifacts = ["*.yml", "*.csv", "*.log", "*.html"]
                uploadArtifacts(artifacts)
            }
        }
    }

should now reads:

    post {
        always {
            uploadArtifacts(["*.yml", "*.csv", "*.log", "*.html"])
        }
    }