Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
0cfe6c76
Commit
0cfe6c76
authored
Sep 20, 2017
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deploy master to yann300 and remix_live to remix.ethereum.org
parent
08e13f1f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
28 deletions
+49
-28
.travis.yml
.travis.yml
+6
-1
deploy_from_travis_master.sh
ci/deploy_from_travis_master.sh
+0
-27
deploy_from_travis_remix-live.sh
ci/deploy_from_travis_remix-live.sh
+43
-0
No files found.
.travis.yml
View file @
0cfe6c76
...
...
@@ -6,10 +6,15 @@ script:
-
./ci/browser_tests.sh
deploy
:
provider
:
script
script
:
ci/deploy_from_travis.sh
script
:
ci/deploy_from_travis
_master
.sh
skip_cleanup
:
true
on
:
branch
:
master
provider
:
script
script
:
ci/deploy_from_travis_remix-live.sh
skip_cleanup
:
true
on
:
branch
:
remix_live
env
:
global
:
-
ENCRYPTION_LABEL1="b5c2730599da"
...
...
ci/deploy_from_travis.sh
→
ci/deploy_from_travis
_master
.sh
View file @
0cfe6c76
...
...
@@ -17,33 +17,6 @@ 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
# git commit --amend -m "Built website from {$SHA}."
# ssh-add deploy_key_remix-live
# git push -f git@github.com:ethereum/remix-live.git gh-pages
# deploy yann300 gh-pages
ENCRYPTED_KEY_VAR3
=
"encrypted_
${
ENCRYPTION_LABEL3
}
_key"
ENCRYPTED_IV_VAR3
=
"encrypted_
${
ENCRYPTION_LABEL3
}
_iv"
...
...
ci/deploy_from_travis_remix-live.sh
0 → 100755
View file @
0cfe6c76
#!/bin/bash
set
-e
SHA
=
`
git rev-parse
--short
--verify
HEAD
`
git config user.name
"
$COMMIT_AUTHOR
"
git config user.email
"
$COMMIT_AUTHOR_EMAIL
"
git checkout
--orphan
gh-pages
git
rm
--cached
-r
.
echo
"# Automatic build"
>
README.md
echo
"Built website from
\`
$SHA
\`
. See https://github.com/ethereum/browser-solidity/ for details."
>>
README.md
echo
"To use an offline copy, download
\`
remix-
$SHA
.zip
\`
."
>>
README.md
# ZIP the whole directory
zip
-r
remix-
$SHA
.zip
$FILES_TO_PACKAGE
# -f is needed because "build" is part of .gitignore
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
git commit
--amend
-m
"Built website from {
$SHA
}."
ssh-add deploy_key_remix-live
git push
-f
git@github.com:ethereum/remix-live.git gh-pages
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment