Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
Packages
Cabal
Commits
779e872f
Commit
779e872f
authored
6 years ago
by
quasicomputational
Committed by
Mikhail Glushenkov
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
travis: rot13 lowercase, too.
parent
041a2380
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
travis/binaries/travis-cleanup.sh
+1
-1
1 addition, 1 deletion
travis/binaries/travis-cleanup.sh
travis/upload.sh
+2
-2
2 additions, 2 deletions
travis/upload.sh
with
3 additions
and
3 deletions
travis/binaries/travis-cleanup.sh
+
1
−
1
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
)
"
This diff is collapsed.
Click to expand it.
travis/upload.sh
+
2
−
2
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
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment