kind: pipeline type: docker name: default steps: - name: greeting image: alpine commands: - echo hello - echo world - name: test image: golang volumes: - name: deps path: /go commands: - go test ./... - name: build image: golang volumes: - name: deps path: /go commands: - go build ./... # - name: deploy code # image: appleboy/drone-ssh # volumes: # - name: ssh_key # path: /root/.ssh # settings: # host: bosub-kub-int.metacoaching.pro # username: mtc # port: 21022 # key_path: /root/.ssh/id_rsa.kubehost # script: # - echo "Target host name :\ `hostname`" - name: test volumes image: alpine volumes: - name: ssh_key path: /root/.ssh commands: - chmod 0400 /root/.ssh/id_rsa.kubehost - ls -lah /root/.ssh/id_rsa.kubehost - apk add --no-cache openssh - ssh -p21022 -o StrictHostKeyChecking=accept-new -i /root/.ssh/id_rsa.kubehost mtc@bosub-kub-int.metacoaching.pro "hostname" - name: notify image: bash:4.4 environment: ZULIP_HOST: https://zulip.meta-tech.academy ZULIP_STREAM: gitea ZULIP_TOPIC: build ZULIP_STATUS: ":check:" ZULIP_USER: from_secret: ZULIP_BOT ZULIP_TKN: from_secret: ZULIP_TOKEN commands: - apk add --no-cache curl - if [ "${DRONE_BUILD_STATUS}" != "success" ]; then export ZULIP_STATUS=":prohibited:"; fi - curl -X POST ${ZULIP_HOST}/api/v1/messages -u ${ZULIP_USER}:${ZULIP_TKN} --data-urlencode type=stream --data-urlencode 'to=\"${ZULIP_STREAM}\"' --data-urlencode topic=${ZULIP_TOPIC} --data content=\"${ZULIP_STATUS} **[build %23${DRONE_BUILD_NUMBER}](${DRONE_BUILD_LINK})**%0A> **${DRONE_BUILD_EVENT}** event on **${DRONE_COMMIT_BRANCH}** branch *by* **${DRONE_COMMIT_AUTHOR}** ([$${DRONE_COMMIT:0:7}]($${DRONE_REMOTE_URL:0:-4}/commit/${DRONE_COMMIT}))%0A> $${DRONE_COMMIT_MESSAGE:-2} volumes: - name: deps temp: {} - name: ssh_key host: path: /home/repo/drone