From 6a2db1abaae4248ebe6e9973d3e814f142beab16 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Tue, 2 Jul 2024 15:51:20 +0200 Subject: [PATCH] test: run int suite on remote server via cron --- .drone.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.drone.yml b/.drone.yml index 4d4bef936..b1ab19897 100644 --- a/.drone.yml +++ b/.drone.yml @@ -57,6 +57,30 @@ steps: - make check - make test + - name: integration test + image: appleboy/drone-ssh + settings: + host: + - int.coopcloud.tech + username: abra + key: + from_secret: abra_int_private_key + port: 22 + command_timeout: 60m + script_stop: true + envs: [ DRONE_SOURCE_BRANCH ] + request_pty: true + script: + - | + set +eux + sh run-int + when: + event: + - cron: + cron: + # @daily https://docs.drone.io/cron/ + - integration + volumes: - name: deps temp: {}