1

在此处输入图像描述 希望你们中的一个可以提供帮助-我正在jenkins管道中运行一个脚本,以便我可以将源地图上传到rollbar,所以我需要遍历缩小的js文件-我正在尝试使用FIND命令但是它一直给我一个错误:发现参数格式不正确- 脚本如下:

stages {
    stage('Set correct environment link') {
        steps {
            script {
                buildTarget = params.targetEnv
                if(params.targetEnv.equals("prj1")){
                    linkTarget = "http://xxx.xxx.xx/xxx/"
                } else if(params.targetEnv.equals(.......)..etc.
    stage('Uploading source maps to Rollbar') {
        steps {
                sh ''' #!/bin/bash
                    # Save a short git hash, must be run from a git
                    # repository (or a child directory)
                    version=$(git rev-parse --short HEAD)

                    # Use the post_server_time access token, you can
                    # find one in your project access token settings
                    post_server_item=e1d04646bf614e039d0af3dec3fa03a7

                    echo "Uploading source maps for version $version!"

                    # We upload a source map for each resulting JavaScript
                    # file; the path depends on your build config
                    for path in $(find dist/renew -name "*.js"); do
                      # URL of the JavaScript file on the web server
                      url=${linkTarget}/$path

                      # a path to a corresponding source map file
                      source_map="@$path.map"

                      echo "Uploading source map for $url"

                      curl --silent --show-error https://api.rollbar.com/api/1/sourcemap \
                        -F access_token=$post_server_item \
                        -F version=$version \
                        -F minified_url=$url \
                        -F source_map=$source_map \
                        > /dev/null
                    done 
                '''
        }
    }
    stage('Deploy') {
        steps {
            echo 'Deploying....'

从 Bash CLI 在此处输入图像描述

4

1 回答 1

2

在@jeb的帮助下,我设法通过在shell脚本中放置(find)的绝对路径来解决jenkins上的这个FIND问题 - 最初它使用的是windows FIND cmd,所以我需要指向cygwin find cmd

之前:对于 $(find dist/renew -name "*.js") 中的路径;做

之后:对于 $(/usr/bin/find dist/renew -name "*.js") 中的路径;做

感谢所有评论

于 2021-01-28T10:25:23.727 回答