Skip to content

Commit

Permalink
Sunbird opensource release 2.0.1 GA (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
sowmya-dixit authored Mar 19, 2024
1 parent 620a3fc commit fae940e
Show file tree
Hide file tree
Showing 29 changed files with 1,093 additions and 781 deletions.
113 changes: 38 additions & 75 deletions .github/workflows/build_and_deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,104 +1,67 @@
name: Obsrv Core service build and deploy workflow
name: Build and Deploy
run-name: Workflow run for ${{ github.ref }}
on:
push:
tags:
- '*'
- '*'
workflow_dispatch:
inputs:
aws-deploy:
type: boolean
required: true
default: false

jobs:
check-tag:
runs-on: ubuntu-latest
outputs:
ALLOWED_TAG: ${{ steps.tag-checker.outputs.TRIGGER_ALLOWED }}
steps:
- name: Check if tag is one in list of current releases
id: tag-checker
run: |
(echo -n TRIGGER_ALLOWED= && echo 'print("${{ github.ref_name }}".split("_")[0]
not in ${{ vars.CURRENT_RELEASE }})' | python3) >> "$GITHUB_OUTPUT"
docker-build:
needs: check-tag
if: needs.check-tag.outputs.ALLOWED_TAG == 'True'
build-image:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- image: "extractor"
target: "extractor-image"
- image: "preprocessor"
target: "preprocessor-image"
- image: "denormalizer"
target: "denormalizer-image"
- image: "transformer"
target: "transformer-image"
- image: "druid-router"
target: "router-image"
- image: "merged-pipeline"
target: "merged-image"
- image: "master-data-processor"
target: "master-data-processor-image"
- image: "kafka-connector"
target: "kafka-connector-image"


include:
- image: "extractor"
target: "extractor-image"
- image: "preprocessor"
target: "preprocessor-image"
- image: "denormalizer"
target: "denormalizer-image"
- image: "transformer"
target: "transformer-image"
- image: "druid-router"
target: "router-image"
- image: "merged-pipeline"
target: "merged-image"
- image: "master-data-processor"
target: "master-data-processor-image"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Maven Build
run: |
mvn clean install -DskipTests

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

- name: Login to docker hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build merged-pipeline image and push
uses: docker/build-push-action@v4
with:
platforms: linux/amd64
target: merged-image
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/merged-pipeline:${{ github.ref_name }}

- name: Build merged-pipeline image and push
uses: docker/build-push-action@v4
with:
platforms: linux/amd64
target: master-data-processor-image
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/master-data-processor:${{ github.ref_name }}

- name: Build merged-pipeline image and push
uses: docker/build-push-action@v4
with:
platforms: linux/amd64
target: kafka-connector-image
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/kafka-connector:${{ github.ref_name }}

- name: Build ${{matrix.image}} image and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
target: ${{matrix.target}}
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{matrix.image}}:${{ github.ref_name }}


aws-deploy:
needs: [check-tag, docker-build]
if: needs.check-tag.outputs.ALLOWED_TAG == 'True'
needs: build-image
if: github.event.inputs.aws-deploy == 'True'
runs-on: ubuntu-latest
environment: aws-dev
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Terragrunt
uses: autero1/[email protected]
with:
Expand All @@ -107,12 +70,12 @@ jobs:
run: terragrunt --version

- name: Clone the terraform deployment repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ vars.DEPLOY_REPO }}
path: deploy
ref: ${{ vars.DEPLOY_REPO_REF }}

- name: Fetch and update kubeconfig file
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
Expand All @@ -136,12 +99,12 @@ jobs:
-var flink_image_tag=${{ github.ref_name }}
azure-deploy:
needs: [check-tag, docker-build]
if: needs.check-tag.outputs.ALLOWED_TAG == 'True' && vars.CLOUD_PROVIDER == 'azure'
needs: build-image
if: vars.CLOUD_PROVIDER == 'azure'
runs-on: ubuntu-latest
steps:
- name: Clone the terraform deployment repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ vars.DEPLOY_REPO }}
path: deploy
Expand All @@ -158,4 +121,4 @@ jobs:
terragrunt init
terragrunt apply -auto-approve -replace=module.flink.helm_release.flink \
-var flink_container_registry=${{ secrets.DOCKERHUB_USERNAME }} \
-var flink_image_tag=${{ github.ref_name }}
-var flink_image_tag=${{ github.ref_name }}
25 changes: 25 additions & 0 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Pull Request
run-name: Workflow run for pull request - ${{ github.event.pull_request.title }}
on:
pull_request:
types:
- opened
- synchronize

jobs:
test-cases:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'

- name: Checkout code
uses: actions/checkout@v4

- name: Run test cases
run: |
mvn clean install
85 changes: 85 additions & 0 deletions .github/workflows/upload_artifact.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
name: Upload Artifacts
run-name: Workflow run for ${{ github.ref }}
on:
push:
tags:
- '*'

jobs:
artifacts-upload-core:
runs-on: ubuntu-latest
steps:
- name: Get Tag Name
id: get-tag
run: echo "tag_name=${GITHUB_REF#refs/tags/}" >>$GITHUB_OUTPUT

- name: Checkout code
uses: actions/checkout@v4

- name: Setup JAVA
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'

- name: Build Framework Artifacts
run: |
cd ./framework
mvn clean install -DskipTests
- name: Upload Framework Artifacts
uses: actions/upload-artifact@v4
with:
name: framework-${{ steps.get-tag.outputs.tag_name }}.jar
path: ./framework/target/framework-1.0.0.jar
if-no-files-found: error

- name: Build Dataset Registry Artifacts
run: |
cd ./dataset-registry
mvn clean install -DskipTests
- name: Upload Dataset Registry Artifacts
uses: actions/upload-artifact@v4
with:
name: dataset-registry-${{ steps.get-tag.outputs.tag_name }}.jar
path: ./dataset-registry/target/dataset-registry-1.0.0.jar
if-no-files-found: error

artifacts-upload-pipeline:
needs: artifacts-upload-core
runs-on: ubuntu-latest
strategy:
matrix:
include:
- image: "extractor"
- image: "preprocessor"
- image: "denormalizer"
- image: "transformer"
- image: "druid-router"
- image: "pipeline-merged"
- image: "master-data-processor"
steps:
- name: Get Tag Name
id: get-tag
run: echo "tag_name=${GITHUB_REF#refs/tags/}" >>$GITHUB_OUTPUT

- name: Checkout code
uses: actions/checkout@v4

- name: Setup JAVA
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'

- name: Build Data Pipeline Artifacts
run: |
cd ./pipeline
mvn clean install -DskipTests
- name: Upload Data Pipeline Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{matrix.image}}-${{ steps.get-tag.outputs.tag_name }}.jar
path: ./pipeline/${{matrix.image}}/target/${{matrix.image}}-1.0.0.jar
if-no-files-found: error
Loading

0 comments on commit fae940e

Please sign in to comment.