From e51081f2ad848c0153c90b1606721634083f6b7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pierzcha=C5=82a?= Date: Tue, 22 Aug 2017 14:45:40 +0200 Subject: [PATCH 1/4] Change crowdin install method --- .circleci/config.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1af4a15ca6bb..72e2a839fb05 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,9 +28,7 @@ aliases: git config --global user.name "Website Deployment Script" echo "machine github.com login jest-bot password $GITHUB_TOKEN" > ~/.netrc # crowdin install start - sudo apt-get install default-jre - wget https://artifacts.crowdin.com/repo/deb/crowdin.deb -O crowdin.deb - sudo dpkg -i crowdin.deb + sudo apt-get update && sudo apt-get install crowdin # crowdin install end crowdin --config crowdin.yaml upload sources --auto-update -b master crowdin --config crowdin.yaml download -b master From 84650a92d9675643858271af07d947e7587a5da6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pierzcha=C5=82a?= Date: Tue, 22 Aug 2017 14:48:13 +0200 Subject: [PATCH 2/4] Save the repository definition --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 72e2a839fb05..ec2433955b39 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,6 +28,7 @@ aliases: git config --global user.name "Website Deployment Script" echo "machine github.com login jest-bot password $GITHUB_TOKEN" > ~/.netrc # crowdin install start + echo "deb https://artifacts.crowdin.com/repo/deb/ /" > /etc/apt/sources.list.d/crowdin.list sudo apt-get update && sudo apt-get install crowdin # crowdin install end crowdin --config crowdin.yaml upload sources --auto-update -b master From 94e19c35a3d52371b3bf06f899753389e084b811 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pierzcha=C5=82a?= Date: Tue, 22 Aug 2017 14:52:21 +0200 Subject: [PATCH 3/4] Another try --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ec2433955b39..7bec5581f305 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,8 +28,9 @@ aliases: git config --global user.name "Website Deployment Script" echo "machine github.com login jest-bot password $GITHUB_TOKEN" > ~/.netrc # crowdin install start - echo "deb https://artifacts.crowdin.com/repo/deb/ /" > /etc/apt/sources.list.d/crowdin.list - sudo apt-get update && sudo apt-get install crowdin + sudo apt-get update + wget https://artifacts.crowdin.com/repo/deb/crowdin.deb -O crowdin.deb + sudo dpkg -i crowdin.deb # crowdin install end crowdin --config crowdin.yaml upload sources --auto-update -b master crowdin --config crowdin.yaml download -b master From 89ee66d36513541c6cdc0dd552aa18dce1b91856 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pierzcha=C5=82a?= Date: Tue, 22 Aug 2017 14:55:21 +0200 Subject: [PATCH 4/4] Another one --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7bec5581f305..61f8163d8258 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,6 +29,7 @@ aliases: echo "machine github.com login jest-bot password $GITHUB_TOKEN" > ~/.netrc # crowdin install start sudo apt-get update + sudo apt-get install default-jre wget https://artifacts.crowdin.com/repo/deb/crowdin.deb -O crowdin.deb sudo dpkg -i crowdin.deb # crowdin install end