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
7978fdc1
Commit
7978fdc1
authored
Jan 18, 2017
by
chriseth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix decryption.
parent
df67b422
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
.travis.yml
.travis.yml
+2
-1
deploy_from_travis.sh
ci/deploy_from_travis.sh
+10
-6
No files found.
.travis.yml
View file @
7978fdc1
...
...
@@ -12,7 +12,8 @@ deploy:
branch
:
master
env
:
global
:
-
ENCRYPTION_LABEL="b5c2730599da"
-
ENCRYPTION_LABEL1="b5c2730599da"
-
ENCRYPTION_LABEL2="85f76a180658"
-
COMMIT_AUTHOR_EMAIL="chris@ethereum.org"
-
COMMIT_AUTHOR="Travis CI"
-
FILES_TO_PACKAGE="assets background.js build icon.png index.html manifest.json README.md soljson.js"
...
...
ci/deploy_from_travis.sh
View file @
7978fdc1
...
...
@@ -17,16 +17,20 @@ 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_VAR
=
"encrypted_
${
ENCRYPTION_LABEL
}
_key"
ENCRYPTED_IV_VAR
=
"encrypted_
${
ENCRYPTION_LABEL
}
_iv"
ENCRYPTED_KEY
=
${
!ENCRYPTED_KEY_VAR
}
ENCRYPTED_IV
=
${
!ENCRYPTED_IV_VAR
}
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_KEY
-iv
$ENCRYPTED_IV
-in
ci/deploy_key.enc
-out
deploy_key
-d
openssl aes-256-cbc
-K
$ENCRYPTED_KEY
-iv
$ENCRYPTED_IV
-in
ci/deploy_key_remix-live.enc
-out
deploy_key_remix-live
-d
openssl aes-256-cbc
-K
$ENCRYPTED_KEY
1
-iv
$ENCRYPTED_IV1
-in
ci/deploy_key.enc
-out
deploy_key
-d
openssl aes-256-cbc
-K
$ENCRYPTED_KEY
2
-iv
$ENCRYPTED_IV2
-in
ci/deploy_key_remix-live.enc
-out
deploy_key_remix-live
-d
eval
`
ssh-agent
-s
`
ssh-add deploy_key
ssh-add deploy_key_remix-live
...
...
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