-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from rundeck-plugins/RUN-1770
use http-step plugin as dependency
- Loading branch information
Showing
7 changed files
with
242 additions
and
385 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Java CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get Fetch Tags | ||
run: git -c protocol.version=2 fetch --tags --progress --no-recurse-submodules origin | ||
if: "!contains(github.ref, 'refs/tags')" | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Build with Gradle | ||
run: ./gradlew build | ||
- name: Get Release Version | ||
id: get_version | ||
run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet) && echo ::set-output name=VERSION::$VERSION | ||
- name: Upload plugin jar | ||
uses: actions/[email protected] | ||
with: | ||
# Artifact name | ||
name: Grails-Plugin-${{ steps.get_version.outputs.VERSION }} | ||
# Directory containing files to upload | ||
path: build/libs/http-notification-plugin-${{ steps.get_version.outputs.VERSION }}.jar |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
on: | ||
push: | ||
# Sequence of patterns matched against refs/tags | ||
tags: | ||
- '*' # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
|
||
name: Upload Release Asset | ||
|
||
jobs: | ||
build: | ||
name: Upload Release Asset | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Build with Gradle | ||
run: ./gradlew build | ||
- name: Get Release Version | ||
id: get_version | ||
run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet) && echo ::set-output name=VERSION::$VERSION | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ steps.get_version.outputs.VERSION }} | ||
draft: false | ||
prerelease: false | ||
- name: Upload Release Asset (jar) | ||
id: upload-release-asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: build/libs/http-notification-plugin-${{ steps.get_version.outputs.VERSION }}.jar | ||
asset_name: http-notification-plugin-${{ steps.get_version.outputs.VERSION }}.jar | ||
asset_content_type: application/octet-stream |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
package com.rundeck.plugin | ||
|
||
import com.dtolabs.rundeck.plugins.PluginLogger | ||
import groovy.transform.CompileStatic | ||
import org.slf4j.Logger | ||
|
||
@CompileStatic | ||
class HttpLogger implements PluginLogger{ | ||
|
||
Logger log | ||
|
||
HttpLogger(Logger log) { | ||
this.log = log | ||
} | ||
|
||
@Override | ||
void log(int level, String message) { | ||
printMessage(level, message) | ||
|
||
} | ||
|
||
@Override | ||
void log(int level, String message, Map eventMeta) { | ||
printMessage(level, message) | ||
} | ||
|
||
@Override | ||
void event(String eventType, String message, Map eventMeta) { | ||
|
||
} | ||
|
||
void printMessage(int level, String message){ | ||
switch (level){ | ||
case 0: | ||
log.error(message) | ||
break | ||
case 1: | ||
log.warn(message) | ||
break | ||
case 2: | ||
log.info(message) | ||
break | ||
case 3: | ||
log.info(message) | ||
break | ||
case 4: | ||
log.debug(message) | ||
break | ||
default: | ||
log.info(message) | ||
break | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.