From 268b858bd5be392dc8ea819ced741c173f7f1bb5 Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 22 Feb 2018 15:23:43 +0100 Subject: [PATCH 1/2] remove deploy to browser solidity gh pages --- ci/deploy_from_travis_remix-live.sh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ci/deploy_from_travis_remix-live.sh b/ci/deploy_from_travis_remix-live.sh index 74f4af139c..98d9a0462e 100755 --- a/ci/deploy_from_travis_remix-live.sh +++ b/ci/deploy_from_travis_remix-live.sh @@ -17,24 +17,15 @@ zip -r remix-$SHA.zip $FILES_TO_PACKAGE git add -f $FILES_TO_PACKAGE remix-$SHA.zip git commit -m "Built website from {$SHA}." -ENCRYPTED_KEY_VAR1="encrypted_${ENCRYPTION_LABEL1}_key" -ENCRYPTED_IV_VAR1="encrypted_${ENCRYPTION_LABEL1}_iv" -ENCRYPTED_KEY1=${!ENCRYPTED_KEY_VAR1} -ENCRYPTED_IV1=${!ENCRYPTED_IV_VAR1} ENCRYPTED_KEY_VAR2="encrypted_${ENCRYPTION_LABEL2}_key" ENCRYPTED_IV_VAR2="encrypted_${ENCRYPTION_LABEL2}_iv" ENCRYPTED_KEY2=${!ENCRYPTED_KEY_VAR2} ENCRYPTED_IV2=${!ENCRYPTED_IV_VAR2} -touch deploy_key touch deploy_key_remix-live chmod 600 deploy_key deploy_key_remix-live -openssl aes-256-cbc -K $ENCRYPTED_KEY1 -iv $ENCRYPTED_IV1 -in ci/deploy_key.enc -out deploy_key -d openssl aes-256-cbc -K $ENCRYPTED_KEY2 -iv $ENCRYPTED_IV2 -in ci/deploy_key_remix-live.enc -out deploy_key_remix-live -d eval `ssh-agent -s` -ssh-add deploy_key -git push -f git@github.com:ethereum/browser-solidity.git gh-pages -ssh-add -D echo -n "remix.ethereum.org" > CNAME git add CNAME From d384430894cf1f60893bb76fbeeff5743536f5e1 Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 22 Feb 2018 16:56:44 +0100 Subject: [PATCH 2/2] deploy to remix_live_alpha --- ci/deploy_from_travis_master.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/ci/deploy_from_travis_master.sh b/ci/deploy_from_travis_master.sh index 0dde7e030c..1d0838d3d6 100755 --- a/ci/deploy_from_travis_master.sh +++ b/ci/deploy_from_travis_master.sh @@ -17,15 +17,19 @@ zip -r remix-$SHA.zip $FILES_TO_PACKAGE git add -f $FILES_TO_PACKAGE remix-$SHA.zip git commit -m "Built website from {$SHA}." -# deploy yann300 gh-pages ENCRYPTED_KEY_VAR3="encrypted_${ENCRYPTION_LABEL3}_key" ENCRYPTED_IV_VAR3="encrypted_${ENCRYPTION_LABEL3}_iv" ENCRYPTED_KEY3=${!ENCRYPTED_KEY_VAR3} ENCRYPTED_IV3=${!ENCRYPTED_IV_VAR3} -touch deploy_key_yann300_remix -chmod 600 deploy_key_yann300_remix -openssl aes-256-cbc -K $ENCRYPTED_KEY3 -iv $ENCRYPTED_IV3 -in ci/deploy_key_yann300_remix.enc -out deploy_key_yann300_remix -d +touch deploy_key_remix-live-alpha +chmod 600 deploy_key deploy_key_remix-live-alpha + +openssl aes-256-cbc -K $ENCRYPTED_KEY3 -iv $ENCRYPTED_IV3 -in ci/deploy_key_remix-live-alpha.enc -out deploy_key_remix-live-alpha -d eval `ssh-agent -s` + + + + ssh-add deploy_key_yann300_remix -git push -f git@github.com:yann300/remix.git gh-pages +git push -f git@github.com:ethereum/remix-live-alpha.git gh-pages