stage testing #139
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sqoop_spark CI | |
# Controls when the action will run. Triggers the workflow on a push | |
# if changes are made in sql-delta-import module | |
on: | |
push: | |
paths: | |
- 'sql-delta-import/**' | |
jobs: | |
build: | |
name: Build Sqoop on Spark | |
runs-on: ubuntu-latest | |
env: | |
APP_NAME: sqoop | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout Codebase | |
uses: actions/checkout@v2 | |
- name: Build and Push Docker Image to Dockerhub | |
uses: docker/build-push-action@v1 | |
with: | |
dockerfile: sql-delta-import/Dockerfile | |
repository: razorpay/sqoop-on-spark | |
username: ${{ secrets.PUBLIC_DOCKER_USERNAME }} | |
password: ${{ secrets.PUBLIC_DOCKER_PASSWORD }} | |
tags: sqoop-${{ github.sha }} | |
- name: Update Build Status Succeeded | |
if: success() | |
run: | | |
echo 'Status check has passed!' | |
curl -X POST -H "Content-Type: application/json" -H "Authorization: token ${{ github.token }}" \ | |
-d '{ "state" : "success" , "context" : "'github/${APP_NAME}-status-check'" , "description" : "'github/${APP_NAME}-status-check'", "target_url" : "https://github.com/razorpay/sqoop-on-spark" }' \ | |
https://api.github.com/repos/razorpay/sqoop-on-spark/statuses/${GITHUB_SHA} | |
exit 0 | |
- name: Send Master Build Failed Notification to Slack | |
if: failure() && github.event.pull_request.merged == true | |
env: | |
SLACK_MESSAGE: 'Master Build failed.' | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_COLOR: '#ff0000' | |
SLACK_USERNAME: Github Actions | |
SLACK_CHANNEL: tech_analytics_alerts | |
SLACK_ICON: https://avatars3.githubusercontent.com/u/9919?s=40&v=4 | |
uses: rtCamp/[email protected] |