Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
59cd2db
moved hivemq testcontainer to testcontainers-java
Nov 23, 2021
40729cf
updated licensing
Nov 29, 2021
b63c383
added license exclusions to build.gradle.kts
Nov 29, 2021
ff47353
fixed build.gradle.kts
Nov 29, 2021
81c57ce
removed unnecessary schema declarations
Nov 29, 2021
df4b1e7
added constants for default images and added them to test
Nov 29, 2021
e2f81f1
improved constants
Nov 29, 2021
d67d46c
using in memory persistence for ITs
Nov 29, 2021
6439592
updated license header
Nov 29, 2021
597f246
First iteration of public docs
codepitbull Dec 15, 2021
883f213
Fix groupId
codepitbull Dec 15, 2021
d3c6379
Apply suggestions from code review
codepitbull Dec 15, 2021
5b42a93
Removed leftover license info
codepitbull Dec 15, 2021
4b463ef
Update docs/modules/hviemq.md
codepitbull Dec 15, 2021
e4b0b12
Working recommendations in
codepitbull Dec 15, 2021
47d2b1e
Merge pull request #2 from hivemq/docs
codepitbull Dec 15, 2021
676dd23
renamed hviemq to hivemq
Dec 21, 2021
cb40119
removed hivemq-extension-sdk compile-dependency
Dec 22, 2021
c630b2b
removed license headers
Dec 22, 2021
f0588e2
removed link in javadoc because ExtensionMain is not on the classpath…
Dec 23, 2021
14f98a2
removed guava dependency
Dec 23, 2021
69f57e5
improved gradle.properties
Dec 23, 2021
2b58754
implementation -> shaded
Dec 23, 2021
5c6f7d2
moved versions to build.gradle.kts
Jan 5, 2022
2bad269
removed unnecessary header
Jan 5, 2022
724bebd
added new buildscript
Jan 10, 2022
508af71
removed settings.gradle
Jan 11, 2022
7f9a34e
added logging events configuration to build.gradle
Jan 11, 2022
53fe224
Isolated hivemq CI job
kiview Jan 11, 2022
1a626aa
Merge branch 'master' into hivemq-debug-ci
kiview Jan 11, 2022
3634d5b
Configure tests to use JRE 11
kiview Jan 11, 2022
931f09e
Use Java 11 in Gradle extension example
kiview Jan 11, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 2 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,35 +19,8 @@ jobs:
- uses: actions/checkout@v2
- id: thundra_test_initializer
uses: thundra-io/thundra-test-init-action@v1
find_gradle_jobs:
runs-on: ubuntu-18.04
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2.5.0
with:
java-version: '8.0.302'
distribution: temurin
- name: Cache Gradle Home files
uses: actions/cache@v2.1.7
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-home-testmatrix-${{ hashFiles('**/*.gradle') }}
- id: set-matrix
env:
# Since we override the tests executor,
# we should not push empty results to the cache
READ_ONLY_REMOTE_GRADLE_CACHE: true
run: |
TASKS=$(./gradlew --no-daemon --parallel -q testMatrix)
echo $TASKS
echo "::set-output name=matrix::{\"gradle_args\":$TASKS}"
check:
needs: [find_gradle_jobs, thundra_test_initializer]
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.find_gradle_jobs.outputs.matrix) }}
needs: [thundra_test_initializer]
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
Expand All @@ -71,7 +44,7 @@ jobs:
project_id: ${{ secrets.THUNDRA_PROJECT_ID }}
- name: Build and test with Gradle (${{matrix.gradle_args}})
run: |
./gradlew --no-daemon --continue --scan ${{matrix.gradle_args}} \
./gradlew --no-daemon --continue --scan :hivemq:check \
$([[ -f $THUNDRA_GRADLE_INIT_SCRIPT_PATH ]] && echo "--init-script $THUNDRA_GRADLE_INIT_SCRIPT_PATH")
env:
THUNDRA_AGENT_TEST_RUN_ID: ${{ needs.thundra_test_initializer.outputs.thundra_agent_testrun_id }}
Expand Down
Loading