forked from provenance-io/provenance
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
provenance 1.18.0 rev bf5275c; mamoru-sniffer-go v0.13.5
- Loading branch information
Showing
21 changed files
with
1,143 additions
and
1,140 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,47 @@ | ||
name: Build Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- 'mamoru*' | ||
- develop | ||
|
||
|
||
pull_request: | ||
branches: | ||
- master | ||
- 'mamoru*' | ||
- develop | ||
|
||
|
||
jobs: | ||
build-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: technote-space/[email protected] | ||
with: | ||
PATTERNS: | | ||
**/**.go | ||
go.mod | ||
go.sum | ||
.github/workflows/lint.yml | ||
scripts/no-now-lint.sh | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.20' | ||
- uses: golangci/golangci-lint-action@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
# If you change this version, be sure to also change it in contrib/devtools/Makefile. | ||
version: v1.54 | ||
args: --timeout 10m --out-${NO_FUTURE}format colored-line-number | ||
github-token: ${{ secrets.github_token }} | ||
- name: No Now Usage | ||
if: env.GIT_DIFF | ||
run: scripts/no-now-lint.sh | ||
|
||
- name: Build with Makefile | ||
run: | | ||
make 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 |
---|---|---|
@@ -0,0 +1,96 @@ | ||
name: "Build docker image" | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- 'mamoru*' | ||
- develop | ||
|
||
env: | ||
REPOSITORY: mamorufoundation/provenance-sniffer | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
# strategy: | ||
# matrix: | ||
# platform: [linux/amd64] # linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/386 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.20' | ||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Available platforms | ||
run: echo ${{ steps.buildx.outputs.platforms }} | ||
|
||
- name: Get current date | ||
id: date | ||
run: echo "::set-output name=date::$(date -u +'%Y-%m-%d')" | ||
|
||
- name: Set architecture variable | ||
id: set_arch | ||
run: echo "::set-output name=arch::$(uname -m)" | ||
|
||
- name: Go mod vendor | ||
run: | | ||
go mod vendor | ||
- name: Prepare | ||
id: prep | ||
run: | | ||
VERSION=noop | ||
if [[ $GITHUB_REF == refs/tags/* ]]; then | ||
VERSION=${GITHUB_REF#refs/tags/} | ||
elif [[ $GITHUB_REF == refs/heads/* ]]; then | ||
VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g') | ||
if [ "${{ github.event.repository.default_branch }}" = "$VERSION" ]; then | ||
VERSION=latest | ||
fi | ||
fi | ||
TAGS="${DOCKER_IMAGE}:${VERSION}" | ||
if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then | ||
TAGS="$TAGS,${DOCKER_IMAGE}:${VERSION}" | ||
fi | ||
echo "Setting output: version=${VERSION}" | ||
echo "version=${VERSION}" >> "$GITHUB_OUTPUT" | ||
echo "Setting output: tags=${TAGS}" | ||
echo "tags=${TAGS}" >> "$GITHUB_OUTPUT" | ||
created="$(date -u +'%Y-%m-%dT%H:%M:%SZ')" | ||
echo "Setting output: created=$created" | ||
echo "created=$created" >> "$GITHUB_OUTPUT" | ||
- name: Build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
target: run | ||
file: docker/blockchain/Dockerfile | ||
build-args: | | ||
VERSION=${{ steps.prep.outputs.version }} | ||
GIT_REVISION=${{ github.sha }} | ||
BUILD_DATE=${{ steps.date.outputs.date }} | ||
PROFILE=release | ||
COMMIT=${{ github.sha }} | ||
push: true | ||
platforms: linux/amd64 | ||
tags: | | ||
${{ env.REPOSITORY }}:latest | ||
${{ env.REPOSITORY }}:${{ github.sha }} | ||
Oops, something went wrong.