【发布时间】:2020-08-30 09:20:33
【问题描述】:
我明白了
/bin/sh: eval: line 98: bash: not found
通过执行 gitlabb .yml 文件发送消息。
我在之前的脚本部分添加了这一行
- apk update && apk add openssh
这没有帮助。
before_script:
- apk update && apk add openssh
- bash docker_install.sh > /dev/null
stages:
- build
- deploy
- loadtest-local
build:
stage: build
script:
- echo "building my application in ubuntu container..."
deploy:
stage: deploy
image: php:7.4
script:
- phpunit Unittest.php
loadtest-local:
image:
name: loadimpact/k6:latest
entrypoint: [""]
stage: loadtest-local
script:
- k6 run ./loadtests/performance-test.js
- k6 run ./loadtests/inttest.js
我该如何解决这个问题?
【问题讨论】:
标签: gitlab gitlab-ci gitlab-ci-runner