Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Glasgow Haskell Compiler
Packages
Cabal
Commits
779e872f
Commit
779e872f
authored
May 22, 2018
by
quasicomputational
Committed by
Mikhail Glushenkov
May 24, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
travis: rot13 lowercase, too.
parent
041a2380
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
travis/binaries/travis-cleanup.sh
travis/binaries/travis-cleanup.sh
+1
-1
travis/upload.sh
travis/upload.sh
+2
-2
No files found.
travis/binaries/travis-cleanup.sh
View file @
779e872f
...
...
@@ -3,6 +3,6 @@
# See travis/upload.sh for more documentation
git remote set-url
--push
origin git@github.com:haskell-pushbot/cabal-binaries.git
(
umask
177
&&
tr
A-Z N-ZA-M < id_rsa.rot13
>
$HOME
/.ssh/id_rsa
)
(
umask
177
&&
tr
A-Z
a-z
N-ZA-M
n-za-m
< id_rsa.rot13
>
$HOME
/.ssh/id_rsa
)
ssh-keyscan github.com
>>
$HOME
/.ssh/known_hosts
git push origin
--delete
"
$(
git rev-parse
--abbrev-ref
HEAD
)
"
travis/upload.sh
View file @
779e872f
...
...
@@ -39,7 +39,7 @@ cd travis
# Setup SSH key we will use to push to binaries repository.
# umask to get the permissions to be 600 (not 400, because the deploy
# script in .travis.yml is going to clobber this private key)
(
umask
177
&&
tr
A-Z N-ZA-M < id_rsa.rot13
>
$HOME
/.ssh/id_rsa
)
(
umask
177
&&
tr
A-Z
a-z
N-ZA-M
n-za-m
< id_rsa.rot13
>
$HOME
/.ssh/id_rsa
)
# Setup SSH keys
ssh-keyscan github.com
>>
$HOME
/.ssh/known_hosts
...
...
@@ -65,7 +65,7 @@ mkdir cabal-install
cp
-R
$TRAVIS_BUILD_DIR
/Cabal/tests Cabal
cp
-R
$TRAVIS_BUILD_DIR
/cabal-install/tests cabal-install
# Copy in credentials so we can delete branch when done
tr
A-Z N-ZA-M <
$TRAVIS_BUILD_DIR
/travis/id_rsa.rot13
>
id_rsa
tr
A-Z
a-z
N-ZA-M
n-za-m
<
$TRAVIS_BUILD_DIR
/travis/id_rsa.rot13
>
id_rsa
# Install all of the necessary files for testing
cp
$TRAVIS_BUILD_DIR
/travis-install.sh
.
cp
$TRAVIS_BUILD_DIR
/travis-common.sh
.
...
...
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