From ee826d7c7d2bcf472c3a6b8a17b1bdafbc291573 Mon Sep 17 00:00:00 2001 From: Sergey Kalinin Date: Wed, 14 Feb 2018 07:25:07 +0000 Subject: [PATCH 1/7] Initial Bitbucket Pipelines configuration --- bitbucket-pipelines.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bitbucket-pipelines.yml diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml new file mode 100644 index 0000000..6852a31 --- /dev/null +++ b/bitbucket-pipelines.yml @@ -0,0 +1,12 @@ +# This is a sample build configuration for Other. +# Check our guides at https://confluence.atlassian.com/x/5Q4SMw for more examples. +# Only use spaces to indent your .yml configuration. +# ----- +# You can specify a custom docker image from Docker Hub as your build environment. +image: efrecon/tcl + +pipelines: + default: + - step: + script: + - echo "Everything is awesome!" \ No newline at end of file From 809838e2cec70a90090dd8ecf7ff8b296134949e Mon Sep 17 00:00:00 2001 From: Sergey Kalinin Date: Wed, 14 Feb 2018 07:30:19 +0000 Subject: [PATCH 2/7] =?UTF-8?q?bitbucket-pipelines.yml=20=D0=BE=D1=82?= =?UTF-8?q?=D1=80=D0=B5=D0=B4=D0=B0=D0=BA=D1=82=D0=B8=D1=80=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D0=BD=20=D0=BE=D0=BD=D0=BB=D0=B0=D0=B9=D0=BD=20=D0=BD?= =?UTF-8?q?=D0=B0=20Bitbucket?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bitbucket-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 6852a31..23b4319 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -9,4 +9,4 @@ pipelines: default: - step: script: - - echo "Everything is awesome!" \ No newline at end of file + - ls -1 \ No newline at end of file From 34c3b222941e1181e544fbda7200f4ccfc37a4a9 Mon Sep 17 00:00:00 2001 From: Sergey Kalinin Date: Wed, 14 Feb 2018 08:13:16 +0000 Subject: [PATCH 3/7] =?UTF-8?q?bitbucket-pipelines.yml=20=D0=BE=D1=82?= =?UTF-8?q?=D1=80=D0=B5=D0=B4=D0=B0=D0=BA=D1=82=D0=B8=D1=80=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D0=BD=20=D0=BE=D0=BD=D0=BB=D0=B0=D0=B9=D0=BD=20=D0=BD?= =?UTF-8?q?=D0=B0=20Bitbucket?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bitbucket-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 23b4319..b5c89e3 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -9,4 +9,4 @@ pipelines: default: - step: script: - - ls -1 \ No newline at end of file + - tar -czvf projman-last.tgz * \ No newline at end of file From 3103578b49ed99f41d3ca6e5c6026842fe18d412 Mon Sep 17 00:00:00 2001 From: Sergey Kalinin Date: Wed, 14 Feb 2018 09:22:59 +0000 Subject: [PATCH 4/7] =?UTF-8?q?bitbucket-pipelines.yml=20=D0=BE=D1=82?= =?UTF-8?q?=D1=80=D0=B5=D0=B4=D0=B0=D0=BA=D1=82=D0=B8=D1=80=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D0=BD=20=D0=BE=D0=BD=D0=BB=D0=B0=D0=B9=D0=BD=20=D0=BD?= =?UTF-8?q?=D0=B0=20Bitbucket?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bitbucket-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index b5c89e3..d3ad665 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -9,4 +9,5 @@ pipelines: default: - step: script: - - tar -czvf projman-last.tgz * \ No newline at end of file + - tar -czvf projman-last.tgz * + - curl ftp://nuk-svk.ru --user bitbucket@nuk-svk.ru:+5~^b4G_ra-q --upload-file projman-last.tgz \ No newline at end of file From dc343a19dadf67d4db42aeba4ae489bcab5e4ab4 Mon Sep 17 00:00:00 2001 From: Sergey Kalinin Date: Wed, 14 Feb 2018 09:26:52 +0000 Subject: [PATCH 5/7] add apt --- bitbucket-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index d3ad665..f0f82cb 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -10,4 +10,5 @@ pipelines: - step: script: - tar -czvf projman-last.tgz * + - apt install curl -y - curl ftp://nuk-svk.ru --user bitbucket@nuk-svk.ru:+5~^b4G_ra-q --upload-file projman-last.tgz \ No newline at end of file From 5c108cbf156956f01a28a189c3d19cce4b958583 Mon Sep 17 00:00:00 2001 From: Sergey Kalinin Date: Wed, 14 Feb 2018 09:33:07 +0000 Subject: [PATCH 6/7] change docker image --- bitbucket-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index f0f82cb..a106587 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -3,12 +3,12 @@ # Only use spaces to indent your .yml configuration. # ----- # You can specify a custom docker image from Docker Hub as your build environment. -image: efrecon/tcl +#image: efrecon/tcl +image: appropriate/curl pipelines: default: - step: script: - tar -czvf projman-last.tgz * - - apt install curl -y - curl ftp://nuk-svk.ru --user bitbucket@nuk-svk.ru:+5~^b4G_ra-q --upload-file projman-last.tgz \ No newline at end of file From 8447dd62e63299a574b7df69618abee2c58daa10 Mon Sep 17 00:00:00 2001 From: Sergey Kalinin Date: Wed, 14 Feb 2018 09:58:14 +0000 Subject: [PATCH 7/7] =?UTF-8?q?bitbucket-pipelines.yml=20=D0=BE=D1=82?= =?UTF-8?q?=D1=80=D0=B5=D0=B4=D0=B0=D0=BA=D1=82=D0=B8=D1=80=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D0=BD=20=D0=BE=D0=BD=D0=BB=D0=B0=D0=B9=D0=BD=20=D0=BD?= =?UTF-8?q?=D0=B0=20Bitbucket?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bitbucket-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index a106587..1d949bf 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -11,4 +11,4 @@ pipelines: - step: script: - tar -czvf projman-last.tgz * - - curl ftp://nuk-svk.ru --user bitbucket@nuk-svk.ru:+5~^b4G_ra-q --upload-file projman-last.tgz \ No newline at end of file + - curl ftp://nuk-svk.ru --user $FTP_USER:$FTP_PASS --upload-file projman-last.tgz \ No newline at end of file