Skip to content

Commit 8f16914

Browse files
committed
etc/scripts: remove use of to AWS_* variables
1 parent 0d62123 commit 8f16914

File tree

2 files changed

+1
-26
lines changed

2 files changed

+1
-26
lines changed

etc/scripts/README.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,6 @@ To create a signed binary package, you need:
2323
[msysgit](https://msysgit.github.io) on Windows)
2424
- `[email protected]` secret key in GPG keyring.
2525

26-
To create signed Windows executables, you also need:
27-
28-
- `signtool.exe`, which is installed with the
29-
[Windows SDK](http://microsoft.com/en-us/download/confirmation.aspx?id=8279).
30-
- "FP Complete, Corporation" code signing key installed. See
31-
[instructions for creating one with StartSSL](https://forum.startcom.org/viewtopic.php?p=5480&sid=143a360f30427e979f6c5b05c2df82cc#p5480).
32-
3326
To upload a binary to a Github release, you also need:
3427

3528
- A [Github authorization token](https://github.com/settings/tokens) with
@@ -39,24 +32,6 @@ To upload a binary to a Github release, you also need:
3932
(probably as a draft) with a tag for the stack package's version (e.g.
4033
`vX.Y.Z`).
4134

42-
To create and upload Debian/Ubuntu packages, you need:
43-
44-
- deb-s3 installed (`sudo gem install deb-s3`).
45-
- `[email protected]` secret key in GPG keyring.
46-
- Set `AWS_SECRET_ACCESS_KEY` and `AWS_ACCESS_KEY_ID` environment variables with
47-
credentials that allow uploading to download.fpcomplete.com S3 bucket.
48-
49-
To create and upload Red Hat/CentOS packages, you need:
50-
51-
- [rpm-s3 installed](https://github.com/crohr/rpm-s3).
52-
- `[email protected]` secret key in GPG keyring.
53-
- Set `AWS_SECRET_ACCESS_KEY` and `AWS_ACCESS_KEY_ID` environment variables with
54-
credentials that allow uploading to download.fpcomplete.com S3 bucket.
55-
56-
To create and upload Arch packages, you need:
57-
58-
- [AWS CLI installed](http://docs.aws.amazon.com/cli/latest/userguide/installing.html).
59-
6035
Invocation
6136
----------
6237

etc/scripts/with-vagrant.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ vagrant up
1313

1414
vagrant provision
1515
vagrant rsync
16-
vagrant ssh -c "set -xe; $3 export GITHUB_AUTH_TOKEN=$GITHUB_AUTH_TOKEN; export AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID; export AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY; export AWS_DEFAULT_REGION=$AWS_DEFAULT_REGION; export AWS_SESSION_TOKEN=$AWS_SESSION_TOKEN; gpg --import /vagrant/gpg-secret-key.asc~ || true; cd /vagrant-build; for x in CONTRIBUTING ChangeLog; do rm -f doc/\$x.md; ln -s ../\$x.md doc/\$x.md; done; stack /vagrant/etc/scripts/release.hs --no-test-haddocks $2"
16+
vagrant ssh -c "set -xe; $3 export GITHUB_AUTH_TOKEN=$GITHUB_AUTH_TOKEN; gpg --import /vagrant/gpg-secret-key.asc~ || true; cd /vagrant-build; for x in CONTRIBUTING ChangeLog; do rm -f doc/\$x.md; ln -s ../\$x.md doc/\$x.md; done; stack /vagrant/etc/scripts/release.hs --no-test-haddocks $2"
1717
vagrant halt || vagrant halt -f

0 commit comments

Comments
 (0)