Skip to content

Commit

Permalink
provenance 1.18.0 rev bf5275c; mamoru-sniffer-go v0.13.5
Browse files Browse the repository at this point in the history
  • Loading branch information
gofmanaa committed Jul 17, 2024
1 parent 7d6c507 commit aacfb5a
Show file tree
Hide file tree
Showing 21 changed files with 1,143 additions and 1,140 deletions.
49 changes: 0 additions & 49 deletions .github/workflows/changelog.yml

This file was deleted.

77 changes: 0 additions & 77 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

116 changes: 0 additions & 116 deletions .github/workflows/docker.yml

This file was deleted.

47 changes: 47 additions & 0 deletions .github/workflows/mamoru-build-test.yml
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
96 changes: 96 additions & 0 deletions .github/workflows/mamoru-docker.yml
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 }}
Loading

0 comments on commit aacfb5a

Please sign in to comment.