Skip to content

Commit

Permalink
GH workflow update + entrypoint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
devops-evmos committed Jun 29, 2023
1 parent b191dc1 commit 7fdb12c
Show file tree
Hide file tree
Showing 5 changed files with 133 additions and 88 deletions.
132 changes: 132 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
name: Build and publish Docker images to GCR

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
branches:
- main
- production
pull_request:

jobs:
golangci:
name: Run golangci-lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
# Required: setup-go, for all versions v3.0.0+ of golangci-lint
- uses: actions/setup-go@v3
with:
go-version: 1.18
check-latest: true
- uses: actions/checkout@v3
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- uses: golangci/[email protected]
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: latest
args: --timeout 10m
github-token: ${{ secrets.github_token }}
# Check only if there are differences in the source code
if: env.GIT_DIFF
test-unit:
needs: golangci
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: "1.19"
check-latest: true
- uses: actions/checkout@v3
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.sol
**/**.go
go.mod
go.sum
- name: Test
run: |
make test
if: env.GIT_DIFF
build:
needs: test-unit
permissions:
contents: "read"
id-token: "write"
runs-on: ubuntu-latest
strategy:
matrix:
component:
- name: "api"
path: "."
dockerfile: "dockerfile"
image_name: "dashboard-backend_api"
- name: "cron"
path: "./cronjobs"
dockerfile: "dockerfile"
image_name: "dashboard-backend_cron"
- name: "nginx"
path: "./cors"
dockerfile: "compose.dockerfile"
image_name: "dashboard-backend_nginx"
env:
IMG_NAME: ${{ github.repository }}
steps:
- name: Checkout
uses: actions/checkout@v3

# - name: Debug
# run: |
# echo "github.ref -> ${{ github.ref }}"
# - uses: hmarr/debug-action@v2
- name: Authenticate with Google Cloud
id: auth
uses: google-github-actions/auth@v1
with:
workload_identity_provider: ${{ vars.GCP_PROVIDER }}
service_account: ${{ vars.GCP_SERVICE_ACCOUNT }}
access_token_lifetime: 600s

- name: Docker metadata
id: metadata
uses: docker/[email protected]
with:
images: ${{ vars.GCP_REGISTRY }}/${{ vars.GCP_PROJECT }}/${{ env.IMG_NAME }}/${{ matrix.component.name }}
tags: |
type=semver,pattern={{version}}
type=raw,value={{sha}},enable=${{ github.ref_type != 'tag' }}
flavor: |
latest=${{ github.ref == 'refs/heads/main' }}
# Configure docker to use the gcloud command-line tool as a credential helper
# This avoids using docker/login-action as a middle man.
- name: Configure Docker with GCloud credentials
shell: bash
run: gcloud auth configure-docker --quiet ${{ vars.GCP_REGISTRY}}

- name: Build and push
uses: docker/[email protected]
with:
push: true
tags: ${{ steps.metadata.outputs.tags }}
context: ${{ matrix.component.path }}
file: ${{ matrix.component.path }}/${{ matrix.component.dockerfile }}
platforms: linux/amd64

- name: Clean up old images
uses: "docker://europe-docker.pkg.dev/gcr-cleaner/gcr-cleaner/gcr-cleaner-cli"
# env:
# GCRCLEANER_LOG: debug
with:
args: >-
-repo=${{ vars.GCP_REGISTRY }}/${{ vars.GCP_PROJECT }}/${{ env.IMG_NAME }}/${{ matrix.component.name }}
-grace=336h
-keep=5
-tag-filter-any=^[a-zA-Z0-9-\.]+$
36 changes: 0 additions & 36 deletions .github/workflows/lint.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/test.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion cronjobs/scripts/endpoint_entrypoint.sh → cronjobs/scripts/entrypoint.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ do
fi
sleep 2
done
python cron.py
python $1.py
23 changes: 0 additions & 23 deletions cronjobs/scripts/price_entrypoint.sh

This file was deleted.

0 comments on commit 7fdb12c

Please sign in to comment.