-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
831 changed files
with
23,585 additions
and
14,585 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 |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
|
||
env: | ||
GH_USER_NAME: github.actor | ||
RELEASE_VERSION: 5.11.3 | ||
RELEASE_VERSION: 5.12.0 | ||
REPOSITORY_URL: 'https://maven.pkg.github.com/' | ||
|
||
jobs: | ||
|
@@ -31,7 +31,7 @@ jobs: | |
run: chmod +x gradlew | ||
|
||
- name: Setup git credentials | ||
uses: oleksiyrudenko/gha-git-credentials@v2 | ||
uses: oleksiyrudenko/gha-git-credentials@v2-latest | ||
with: | ||
name: 'reportportal.io' | ||
email: '[email protected]' | ||
|
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,13 @@ | ||
name: Add GitHub release version to Jira issues | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
call-jira-sync: | ||
name: Call Jira versions update | ||
uses: reportportal/.github/.github/workflows/update-jira-versions.yaml@main | ||
with: | ||
jira-server: ${{ vars.JIRA_SERVER }} | ||
secrets: inherit |
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 |
---|---|---|
|
@@ -4,13 +4,12 @@ ARG APP_VERSION | |
WORKDIR /usr/app | ||
COPY . /usr/app | ||
RUN if [ "${RELEASE_MODE}" = true ]; then \ | ||
gradle build --exclude-task test \ | ||
gradle build --no-build-cache --exclude-task test \ | ||
-PreleaseMode=true \ | ||
-Dorg.gradle.project.version=${APP_VERSION}; \ | ||
else gradle build --exclude-task test -Dorg.gradle.project.version=${APP_VERSION}; fi | ||
else gradle build --no-build-cache --exclude-task test -Dorg.gradle.project.version=${APP_VERSION}; fi | ||
|
||
# For ARM build use flag: `--platform linux/arm64` | ||
FROM --platform=$BUILDPLATFORM amazoncorretto:21.0.4 | ||
FROM amazoncorretto:21.0.4 | ||
LABEL version=${APP_VERSION} description="EPAM Report portal. Main API Service" maintainer="Andrei Varabyeu <[email protected]>, Hleb Kanonik <[email protected]>" | ||
ARG APP_VERSION=${APP_VERSION} | ||
ENV APP_DIR=/usr/app | ||
|
@@ -19,4 +18,5 @@ WORKDIR $APP_DIR | |
COPY --from=build $APP_DIR/build/libs/service-api-*exec.jar . | ||
VOLUME ["/tmp"] | ||
EXPOSE 8080 | ||
ENTRYPOINT exec java ${JAVA_OPTS} -jar ${APP_DIR}/service-api-*exec.jar | ||
# ENTRYPOINT exec java ${JAVA_OPTS} -jar ${APP_DIR}/service-api-*exec.jar | ||
ENTRYPOINT ["sh", "-c", "java ${JAVA_OPTS} -jar ${APP_DIR}/service-api-*exec.jar"] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.