-
Notifications
You must be signed in to change notification settings - Fork 4
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 #55 from reportportal/rc/5.11.0
Release 5.11.0
- Loading branch information
Showing
30 changed files
with
3,981 additions
and
4,257 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,40 @@ | ||
name: Build | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
paths-ignore: | ||
- '.github/**' | ||
- README.md | ||
- gradle.properties | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '11' | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Setup git credentials | ||
uses: oleksiyrudenko/gha-git-credentials@v2 | ||
with: | ||
name: 'reportportal.io' | ||
email: '[email protected]' | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build with Gradle | ||
id: build | ||
run: | | ||
./gradlew build |
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 |
---|---|---|
@@ -1,19 +1,37 @@ | ||
# Azure DevOps bug tracking system integration for ReportPortal | ||
|
||
## UI | ||
|
||
Preconditions: | ||
- Install Node.js version ≥ 12. | ||
- Install Node.js (version 14 is recommended). | ||
|
||
Install the dependencies: `npm install` | ||
|
||
Run in dev mode: | ||
```bash | ||
npm run dev # Run webpack in dev watch mode | ||
npm run start # Serve built files | ||
``` | ||
|
||
_Available only from RP v23.3_: use | ||
```javascript | ||
window.RP.overrideExtension(pluginName, url); | ||
``` | ||
function call in browser to override the plugin UI assets in favor of your local development changes, f.e. | ||
```javascript | ||
window.RP.overrideExtension('Azure DevOps', 'http://localhost:9090'); | ||
``` | ||
|
||
Build the UI source code: `npm run build` | ||
|
||
**How it works**: [UI plugin docs](https://github.com/reportportal/service-ui/blob/5.4.1/app/docs/14-plugins.md). | ||
**How it works**: [UI plugin docs](https://github.com/reportportal/service-ui/blob/master/docs/14-plugins.md). | ||
|
||
## Build the plugin | ||
|
||
Preconditions: | ||
- Install JDK version 11. | ||
- Specify version number in gradle.properties file. | ||
|
||
**Note:** Versions in the _develop_ branch are not release versions and must be postfixed with `NEXT_RELEASE_VERSION-SNAPSHOT-NUMBER_OF_BUILD (Example: 5.3.6-SNAPSHOT-1)` | ||
|
||
Build the plugin: `gradlew build` |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
version=5.7.2 | ||
version=5.11.0 | ||
description=EPAM Report Portal. Azure DevOps plugin | ||
pluginId = Azure DevOps |
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
Oops, something went wrong.