在 Travis CI 中成功构建后,我正在尝试运行脚本。脚本进行休息调用。如果我在成功后部分的 travis.yml 文件中运行脚本,它只会识别第一行而不执行其他行。该脚本有多行并进行 curl 调用。
sudo: required
language: java
script: mvn org.codehaus.mojo:license-maven-plugin:download-licenses
env-variable:
-BEARER
-SYNC_RUN
-RES
after_success:
- BEARER=$(curl -X POST --url https://example.com -u apitoken:1234567890 --data grant_type=client_credentials | jq -r '.access_token')
- SYNC_RUN=$(curl -X POST --header 'Content-Type: application/json' --header "Authorization: Bearer $BEARER" -d "`cat pivio.yaml`" https://example.com | jq -r '.id')
- RES=$(curl --write-out '%{http_code}' -X POST --header 'Content-Type: application/json' --header "Authorization: Bearer $BEARER" https://example.com/$SYNC_RUN/start)
services:
- docker
这是 travis.yml 文件。