Skip to content

Commit

Permalink
refs #109: Update the workflows (for PRs, main branch and release tes…
Browse files Browse the repository at this point in the history
…t versions)
  • Loading branch information
mauriciogeneroso committed Jun 29, 2024
1 parent eeb9ff9 commit 4e909aa
Show file tree
Hide file tree
Showing 3 changed files with 147 additions and 27 deletions.
13 changes: 13 additions & 0 deletions .github/actions/setup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: 'Setup JDK and Checkout'
description: 'Checkout code and set up JDK 21'
runs:
using: 'composite'
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
33 changes: 6 additions & 27 deletions .github/workflows/sd-ci.yml → .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
name: CI Workflow
name: PR Build

on:
push:
branches: [ main ]
paths:
- 'gradle/**'
- '**.gradle'
- 'gradle.properties'
- 'sd-app/**'
- 'sd-ft/**'
- '.github/workflows/sd-ci.yml'
pull_request:
branches: [ main ]
paths:
Expand All @@ -18,7 +9,7 @@ on:
- 'gradle.properties'
- 'sd-app/**'
- 'sd-ft/**'
- '.github/workflows/sd-ci.yml'
- '.github/workflows/pr-build.yml'
workflow_dispatch:
inputs:
logLevel:
Expand All @@ -35,14 +26,8 @@ jobs:
build-and-unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Setup
uses: ./.github/actions/setup

- name: Build + unit tests
run: ./gradlew :sd-app:build
Expand All @@ -65,14 +50,8 @@ jobs:
needs: build-and-unit-tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Setup
uses: ./.github/actions/setup

- name: Download JAR
uses: actions/download-artifact@v4
Expand Down
128 changes: 128 additions & 0 deletions .github/workflows/sd-ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
name: CI Workflow

on:
push:
branches: [ main ]
paths:
- 'gradle/**'
- '**.gradle'
- 'gradle.properties'
- 'sd-app/**'
- 'sd-ft/**'
- '.github/workflows/sd-ci-cd.yml'

workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'debug'
type: choice
options:
- info
- warning
- debug

env:
REGISTRY: ghcr.io
IMAGE_NAME: 'groot-mg/test/service-discovery'

jobs:
build-and-unit-tests:
runs-on: ubuntu-latest
steps:
- name: Setup
uses: ./.github/actions/setup

- name: Build + unit tests
run: ./gradlew :sd-app:build

- name: Upload unit tests report
if: always()
uses: actions/upload-artifact@v4
with:
name: unit-tests-report
path: |
sd-app/build/reports/tests/test/**/*
- name: Upload JAR
uses: actions/upload-artifact@v4
with:
name: app-jar
path: sd-app/build/libs/service-discovery.jar

publishes-docker-image:
needs: build-and-unit-tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Download JAR
uses: actions/download-artifact@v4
with:
name: app-jar
path: sd-app/build/libs/

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=sha
- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
context: sd-app/
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.meta.outputs.tag }}
labels: ${{ steps.meta.outputs.labels }}

functional-tests:
needs: publishes-docker-image
runs-on: ubuntu-latest
steps:
- name: Setup
uses: .github/actions/setup

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Run Docker container
run: |
docker run -d -p 8081:8081 --name service-discovery ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.publishes-docker-image.outputs.tag }}
- name: Wait for Container to start
run: |
echo "Waiting for Spring Boot to start..."
sleep 3
- name: Run functional tests
run: ./gradlew --no-daemon :sd-ft:cucumber

- name: Stop and remove Docker container
run: |
docker stop service-discovery
docker rm service-discovery
- name: Archive Cucumber test reports
if: always()
uses: actions/upload-artifact@v4
with:
name: cucumber-tests-report
path: |
sd-ft/reports/cucumber-report.html

0 comments on commit 4e909aa

Please sign in to comment.