Skip to content

Commit

Permalink
[Th2-5165] Cradle API uses page day cache (#110)
Browse files Browse the repository at this point in the history
* Updated github workflow
  • Loading branch information
Nikita-Smirnov-Exactpro authored Mar 6, 2024
1 parent 9b9c1d6 commit b2724d0
Show file tree
Hide file tree
Showing 9 changed files with 60 additions and 84 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build-dev-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Build and publish dev release Docker image to Github Container Registry ghcr.io

on: workflow_dispatch

jobs:
build:
uses: th2-net/.github/.github/workflows/compound-java.yml@main
with:
build-target: 'Docker'
devRelease: true
createTag: true
docker-username: ${{ github.actor }}
secrets:
docker-password: ${{ secrets.GITHUB_TOKEN }}
14 changes: 14 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Build and publish release Docker image to Github Container Registry ghcr.io

on: workflow_dispatch

jobs:
build:
uses: th2-net/.github/.github/workflows/compound-java.yml@main
with:
build-target: 'Docker'
devRelease: false
createTag: true
docker-username: ${{ github.actor }}
secrets:
docker-password: ${{ secrets.GITHUB_TOKEN }}
19 changes: 19 additions & 0 deletions .github/workflows/build-sanpshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and publish Docker image to Github Container Registry ghcr.io

on:
push:
branches-ignore:
- master
- version-*
- dependabot**
paths-ignore:
- README.md

jobs:
build-job:
uses: th2-net/.github/.github/workflows/compound-java-dev.yml@main
with:
build-target: 'Docker'
docker-username: ${{ github.actor }}
secrets:
docker-password: ${{ secrets.GITHUB_TOKEN }}
30 changes: 0 additions & 30 deletions .github/workflows/dev-java-publish-sonatype-and-docker.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/dev-release-java-publish-sonatype-and-docker.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/java-publish-sonatype-and-docker.yml

This file was deleted.

7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Overview (5.3.1)
# Overview (5.4.0)

Message store (mstore) is an important th2 component responsible for storing raw messages into Cradle. Please refer to [Cradle repository] (https://github.com/th2-net/cradleapi/blob/master/README.md) for more details. This component has a pin for listening messages via MQ.

Expand Down Expand Up @@ -115,6 +115,11 @@ spec:
This is a list of supported features provided by libraries.
Please see more details about this feature via [link](https://github.com/th2-net/th2-common-j#configuration-formats).
## 5.4.0
* Updated cradle api: `5.2.0-dev`
* Updated common: `5.8.0-dev`

## 5.3.1

* Add information about group and book into error message during batch processing
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ plugins {
}

ext {
cradleVersion = '5.1.4-dev'
commonVersion = '5.6.0-dev'
cradleVersion = '5.2.0-dev'
commonVersion = '5.8.0-dev'
commonUtilsVersion = '2.2.2-dev'
}

Expand Down Expand Up @@ -180,9 +180,9 @@ dependencies {
implementation 'org.apache.commons:commons-lang3'

implementation "org.slf4j:slf4j-api"
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.4.0'
testImplementation 'org.mockito:mockito-core:5.3.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
testImplementation 'org.mockito:mockito-junit-jupiter:5.10.0'
testImplementation 'org.mockito:mockito-core:5.10.0'
}

test {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
release_version=5.3.1
release_version=5.4.0
description='th2 mstore component'
vcs_url=https://github.com/th2-net/th2-mstore
vcs_url=https://github.com/th2-net/th2-mstore

0 comments on commit b2724d0

Please sign in to comment.