Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ jobs:
SIGNING_PRIVATE_KEY: ${{ secrets.SIGNING_PRIVATE_KEY }}
SIGNING_PRIVATE_PASSPHRASE: ${{ secrets.SIGNING_PRIVATE_PASSPHRASE }}
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
run: ./omnibus/package-scripts/publish_package.sh stackstate-agent-3-test
run: ./omnibus/package-scripts/publish_package.sh sts-agent-prerelease

generate-install-script:
name: Generate the pre-release agent install script
Expand All @@ -494,7 +494,7 @@ jobs:

- name: Render install.sh against the pre-release repositories
env:
STS_AWS_TEST_BUCKET: stackstate-agent-3-test
STS_AWS_TEST_BUCKET: sts-agent-prerelease
STS_AWS_TEST_BUCKET_YUM: stackstate-agent-3-rpm-test
STS_AWS_TEST_BUCKET_WIN: stackstate-agent-3-test
run: |
Expand Down Expand Up @@ -544,8 +544,8 @@ jobs:
- name: Upload install.sh
run: |
set -euo pipefail
aws s3 cp ./install.sh s3://stackstate-agent-3-test/install.sh --acl public-read
aws s3 ls s3://stackstate-agent-3-test/
aws s3 cp ./install.sh s3://sts-agent-prerelease/install.sh --acl public-read
aws s3 ls s3://sts-agent-prerelease/

cerberus-notify:
name: Report failure to Slack (Cerberus)
Expand Down
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,20 @@ To install the official release:
or
$ wget -qO- https://stackstate-agent-3.s3.amazonaws.com/install.sh | STS_API_KEY="xxx" STS_URL="yyy" bash

##### Test
##### Pre-release

If you want to install a branch version use the test repository:
If you want to install a pre-release build use the pre-release repository:

$ curl -o- https://stackstate-agent-3-test.s3.amazonaws.com/install.sh | STS_API_KEY="xxx" STS_URL="yyy" CODE_NAME="PR_NAME" bash
$ curl -fLo- https://sts-agent-prerelease.s3.amazonaws.com/install.sh | STS_API_KEY="xxx" STS_URL="yyy" CODE_NAME="RELEASE_BRANCH" bash
or
$ wget -qO- https://stackstate-agent-3-test.s3.amazonaws.com/install.sh | STS_API_KEY="xxx" STS_URL="yyy" CODE_NAME="PR_NAME" bash
$ wget -qO- https://sts-agent-prerelease.s3.amazonaws.com/install.sh | STS_API_KEY="xxx" STS_URL="yyy" CODE_NAME="RELEASE_BRANCH" bash

and replace `PR_NAME` with the branch name (e.g. `master`, `STAC-xxxx`).
and replace `RELEASE_BRANCH` with the release branch name (e.g. `stackstate-7.78.2`).

Only the release branch is published here: the publishing job runs on pushes to
that branch and uses the branch name as the apt codename. Per-branch builds such
as `master` or `STAC-xxxx` are no longer produced — historical ones remain
readable at `https://stackstate-agent-3-test.s3.amazonaws.com`.

### Docker

Expand Down
Loading