-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added CI config, added release script and config, updated version pri…
…nting
- Loading branch information
Showing
7 changed files
with
259 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Build and Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
branches: | ||
- "**" | ||
|
||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
go-version: [1.17.x] | ||
os: [ubuntu-latest, macos-latest] | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Cache Go modules | ||
uses: actions/cache@v2 | ||
with: | ||
# In order: | ||
# * Module download cache | ||
# * Build cache (Linux) | ||
# * Build cache (Mac) | ||
path: | | ||
~/go/pkg/mod | ||
~/.cache/go-build | ||
~/Library/Caches/go-build | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- name: Run Tests | ||
run: go test ./... | ||
|
||
- name: Build | ||
run: go build ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
/sf-data | ||
/sf.yaml | ||
/sfeth | ||
/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
project_name: sf-ethereum | ||
|
||
release: | ||
github: | ||
owner: streamingfast | ||
name: sf-ethereum | ||
name_template: '{{.Tag}}' | ||
builds: | ||
- goos: | ||
- linux | ||
- darwin | ||
goarch: | ||
- arm64 | ||
- amd64 | ||
targets: | ||
- linux_amd64 | ||
- darwin_amd64 | ||
- darwin_arm64 | ||
main: ./cmd/sfeth | ||
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} | ||
binary: sfeth | ||
env: | ||
- CGO_ENABLED=0 | ||
archives: | ||
- name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}' | ||
replacements: | ||
amd64: x86_64 | ||
darwin: macOS | ||
linux: linux | ||
format: tar.gz | ||
files: | ||
- LICENSE | ||
- README.md | ||
snapshot: | ||
name_template: '{{ .Tag }}-next' | ||
checksum: | ||
name_template: checksums.txt | ||
changelog: | ||
filters: | ||
exclude: | ||
- '^docs:' | ||
- '^test:' | ||
sort: asc | ||
dist: dist | ||
signs: | ||
- cmd: keybase | ||
args: | ||
- sign | ||
- --infile | ||
- $artifact | ||
- --binary | ||
- --outfile | ||
- $signature | ||
- --detached | ||
signature: ${artifact}.sig | ||
artifacts: checksum | ||
env_files: | ||
github_token: ~/.config/goreleaser/github_token | ||
brews: | ||
- name: sf-ethereum | ||
tap: | ||
owner: streamingfast | ||
name: homebrew-tap | ||
commit_author: | ||
name: goreleaserbot | ||
email: goreleaser@streamingfast.io | ||
homepage: "https://github.com/streamingfast/sf-ethereum" | ||
description: "Firehose on Ethereum stack" | ||
license: "Apache-2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
#!/usr/bin/env bash | ||
|
||
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )" | ||
|
||
dry_run="true" | ||
force="false" | ||
|
||
main() { | ||
pushd "$ROOT" &> /dev/null | ||
|
||
while getopts "hnf" opt; do | ||
case $opt in | ||
h) usage && exit 0;; | ||
n) dry_run="true";; | ||
f) force="true";; | ||
\?) usage_error "Invalid option: -$OPTARG";; | ||
esac | ||
done | ||
shift $((OPTIND-1)) | ||
|
||
verify_github_token | ||
verify_keybase | ||
|
||
if [[ "$dry_run" == "true" && "$force" == "true" ]]; then | ||
usage_error "Only one of -n (dry run) or -f (force) can be provided at a time" | ||
fi | ||
|
||
version="$1"; shift | ||
if [[ "$version" == "" ]]; then | ||
printf "What version do you want to release (current latest is `git describe --tags --abbrev=0`)? " | ||
read version | ||
fi | ||
|
||
if [[ ! "$version" =~ ^v ]]; then | ||
echo "Version $version is invalid, must start with a 'v'" | ||
exit 1 | ||
fi | ||
|
||
mode="Dry Run, use -f flag to switch to publishing mode" | ||
if [[ "$force" == "true" ]]; then | ||
mode="Publishing" | ||
fi | ||
|
||
echo "About to release version tagged $version ($mode)" | ||
sleep 3 | ||
|
||
args="--rm-dist" | ||
if [[ "$force" == "false" ]]; then | ||
args="--skip-publish --skip-validate $args" | ||
fi | ||
|
||
set -e | ||
git tag "$version" | ||
set +e | ||
|
||
goreleaser release $args | ||
if [[ $? -gt 0 || "$force" == "false" ]]; then | ||
git tag -d "$version" | ||
fi | ||
} | ||
|
||
verify_github_token() { | ||
if [[ ! -f "$HOME/.config/goreleaser/github_token" && "$GITHUB_TOKEN" = "" ]]; then | ||
echo "No GitHub token could be found in enviornment variable GITHUB_TOKEN" | ||
echo "nor at ~/.config/goreleaser/github_token." | ||
echo "" | ||
echo "You will need to create one on GitHub website and make it available through" | ||
echo "one of the accept way mentionned above." | ||
exit 1 | ||
fi | ||
} | ||
|
||
verify_keybase() { | ||
if ! command keybase &> /dev/null; then | ||
echo "Keybase is required to sign the release (the checksum of all the artifacts" | ||
echo "to be precise)." | ||
echo "" | ||
echo "You will need to have it available ('brew install keybase' on Mac OS X) and" | ||
echo "configure it, just setting your Git username and a password should be enough." | ||
exit 1 | ||
fi | ||
} | ||
|
||
usage_error() { | ||
message="$1" | ||
exit_code="$2" | ||
|
||
echo "ERROR: $message" | ||
echo "" | ||
usage | ||
exit ${exit_code:-1} | ||
} | ||
|
||
usage() { | ||
echo "usage: release.sh [-h] [-f] [-n] [<version>]" | ||
echo "" | ||
echo "Perform the necessary commands to perform a release of the project." | ||
echo "The <version> is optional, if not provided, you'll be asked the question." | ||
echo "" | ||
echo "The release being performed against GitHub, you need a valid GitHub API token" | ||
echo "with the necessary rights to upload release and push to repositories. It needs to" | ||
echo "be provided in file ~/.config/goreleaser/github_token or through an environment" | ||
echo "variable GITHUB_TOKEN." | ||
echo "" | ||
echo "Keybase is required to sign the release (the checksum of all the artifacts" | ||
echo "to be precise)." | ||
echo "" | ||
echo "You will need to have it available ('brew install keybase' on Mac OS X) and" | ||
echo "configure it, just setting your Git username and a password should be enough." | ||
echo "" | ||
echo "Options" | ||
echo " -f Run in write mode publishing the release to GitHub" | ||
echo " -n Run in dry-run mode skipping validation and publishing" | ||
echo " -h Display help about this script" | ||
} | ||
|
||
main "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters