Skip to content

Commit

Permalink
Merge branch 'ADORSYS-GIS:main' into feature-basic-classes-for-each-s…
Browse files Browse the repository at this point in the history
…ervice-ADORSYS-GIS#64
  • Loading branch information
Motouom authored Mar 7, 2024
2 parents 2edbfa3 + f431fb7 commit cfd8ec6
Show file tree
Hide file tree
Showing 12 changed files with 501 additions and 75 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/build-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Build NodeJS

on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
branches:
- '**'

env:
REGISTRY: ghcr.io
# IMAGE_URL: "ghcr.io/my-org/my-image:1.0.0"
IMAGE_NAME: ${{ github.repository }}-frontend


jobs:
build:

runs-on: ubuntu-latest

permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Npm install
run: cd power-pay-frontend && npm ci

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to the Docker registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build Frontend
run: cd power-pay-frontend && npm run build

- id: string
uses: AsZc/change-string-case-action@v6
with:
string: ${{ env.IMAGE_NAME }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ steps.string.outputs.lowercase }}

- name: Build and push
uses: docker/build-push-action@v4
if: github.event_name != 'pull_request'
with:
context: ./power-pay-frontend
file: ./power-pay-frontend/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
70 changes: 70 additions & 0 deletions .github/workflows/build-service.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Build Backend

on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
branches:
- '**'

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}-backend


jobs:
build:

runs-on: ubuntu-latest

permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build Backend
run: cd power-pay-backend && mvn package

- id: string
uses: ASzc/change-string-case-action@v6
with:
string: ${{ env.IMAGE_NAME}}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ steps.string.outputs.lowercase }}

- name: Build and push image
uses: docker/build-push-action@v5
if: github.event_name != 'pull_request'
with:
context: ./power-pay-backend
file: ./power-pay-backend/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}


65 changes: 65 additions & 0 deletions .github/workflows/build-translator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Build Translator

on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
branches:
- '**'

env:
CARGO_TERM_COLOR: always
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}-translator

jobs:
build:

runs-on: ubuntu-latest

permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v4
- name: Build Translator
run: cd power-pay-translator && cargo build --verbose && cargo test --verbose

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to the Docker registry
id: login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- id: lowercase_image_name
name: Lowercase image name
uses: AsZc/change-string-case-action@v6
with:
string: ${{ env.IMAGE_NAME }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ steps.lowercase_image_name.outputs.lowercase }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
if: github.event_name != 'pull_request'
with:
context: ./power-pay-translator
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
25 changes: 0 additions & 25 deletions .github/workflows/maven.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/node.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/rust.yml

This file was deleted.

Loading

0 comments on commit cfd8ec6

Please sign in to comment.