-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Full project review based on latest version of JNet suite (#193) * #168: first step: replace namespaces in all available classes * #93: documentation alignment * Added a benchmark to verify performance roundtrip (#178) * #53: added new roundtrip benchmark * #53: update performance description file * #168: moved KNet specific classes into dedicated folder * #179: fixed compacted topic creation (#180) * #92: full class review due to breaking change in JCOBridge * #168: first generation * Added KNetCompactedReplicator, evolved KNetProducer and KNetConsumer, enhanced serializer/deserializer (#182) * #92: full class review due to breaking change in JCOBridge * #175: improvements in Consumer/Producer Builders * #175: review classes to accept new KNetCompactedReplicator * #175: added serialization projects * #175: moved to Java SerDes due to error in C# compilation within container * #175: review of KNetConsumer, KNetProducer and KNetSerDes; added specific test for KNetConsumer and KNetProducer * #175: update serialization and added MessagePack type * #175: updates on sync management * #175: documentation update * Update documentation after commit fb2bded * Added missing SourceLink * Configuration is now managed using a JSON file (masesgroup/JNet#179) * Update configuration and files * Temporary commit: many classes shall be removed because are old * #185: fix .NET Framework PowerShell version (#186) * #92: update to JNet 2.0.0.0 * #121: update to version 2.0.0.0 * Correction on namespace * Update classes after JNetReflector update for masesgroup/JNet#195 * #168 (comment): implementation of special listeners * Reviewed implementation of KNet version of ConnectStandalone and ConnectDistributed * #88: full update to Apache Kafka 3.5.0 * Code alignment to latest JNetReflector: nullable native types converted into Java types * Update workflows to avoid documentation generation out of main branch build * Update documentation after commit 312b4bf * Added missing documentation (#194) * #24, #168: review documentation, removed unused classes, KafkaClientSupplier becomes a listener * #24: fix documentation location (#195) * #24: removed many warning from workflows output (#196) * #24: added disclaimer for version 2.0.0 (#197) * Update documentation after commit cb755ee * V2 merge conflicts solved (#198) * Remerge (#199) * #24: added some documentation for serializer/deserializer (#201) * Update documentation after commit b9e9db3 --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
e867999
commit f094736
Showing
4,379 changed files
with
1,542,307 additions
and
566,987 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
|
@@ -63,7 +63,7 @@ jobs: | |
submodules: 'true' | ||
|
||
- name: Pre compile | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src/net/KNet/KNet.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src/net/KNet/KNet.csproj | ||
|
||
- name: Set up Apache Maven Central | ||
uses: actions/setup-java@v3 | ||
|
@@ -78,7 +78,7 @@ jobs: | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase | ||
|
||
- name: Install local file to be used within Javadoc plugin of generated POM | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.7 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.8 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
shell: bash | ||
|
||
- name: Create Jars | ||
|
@@ -132,10 +132,10 @@ jobs: | |
submodules: 'true' | ||
|
||
- name: Pre compile templates | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNetTemplates.sln | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNetTemplates.sln | ||
|
||
- name: Pre compile | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNet\KNet.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNet\KNet.csproj | ||
|
||
- name: Set up Apache Maven Central | ||
uses: actions/setup-java@v3 | ||
|
@@ -150,7 +150,7 @@ jobs: | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase | ||
|
||
- name: Install local file to be used within Javadoc plugin of generated POM | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.7 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.8 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
shell: bash | ||
|
||
- name: Create Jars | ||
|
@@ -161,13 +161,13 @@ jobs: | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | ||
|
||
- name: Compile command line | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNetCLI\KNetCLI.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNetCLI\KNetCLI.csproj | ||
|
||
- name: Compile KNet Connect | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNetConnect\KNetConnect.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNetConnect\KNetConnect.csproj | ||
|
||
- name: Compile KNetPS | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNetPS\KNetPS.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNetPS\KNetPS.csproj | ||
|
||
- uses: nuget/[email protected] | ||
with: | ||
|
@@ -177,7 +177,7 @@ jobs: | |
- run: nuget pack src\net\KNetConnect\KNetConnect.nuspec -OutputDirectory .\bin | ||
|
||
- name: Recompile to create nuget packages | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNet.sln | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNet.sln | ||
|
||
- name: Prepare PowerShell package | ||
run: | | ||
|
@@ -197,9 +197,10 @@ jobs: | |
run: Remove-Item .\docs\* -Recurse -Force -Exclude _config.yml | ||
|
||
- name: Build documentation | ||
if: ${{ github.repository_owner == 'masesgroup'}} #if outside main repo do not build docs, it will be checked during pullrequest or build on main branch | ||
run: | | ||
choco install docfx | ||
cd src\net\Documentation | ||
cd src\documentation | ||
docfx | ||
# - name: Build Docker Image | ||
|
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 |
---|---|---|
|
@@ -51,7 +51,7 @@ jobs: | |
submodules: 'true' | ||
|
||
- name: Pre compile | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src/net/KNet/KNet.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src/net/KNet/KNet.csproj | ||
|
||
- name: Set up Apache Maven Central | ||
uses: actions/setup-java@v3 | ||
|
@@ -66,7 +66,7 @@ jobs: | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase | ||
|
||
- name: Install local file to be used within Javadoc plugin of generated POM | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.7 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.8 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
shell: bash | ||
|
||
- name: Create Jars | ||
|
@@ -102,10 +102,10 @@ jobs: | |
submodules: 'true' | ||
|
||
- name: Pre compile templates | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNetTemplates.sln | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNetTemplates.sln | ||
|
||
- name: Pre compile | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNet\KNet.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNet\KNet.csproj | ||
|
||
- name: Set up Apache Maven Central | ||
uses: actions/setup-java@v3 | ||
|
@@ -120,7 +120,7 @@ jobs: | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase | ||
|
||
- name: Install local file to be used within Javadoc plugin of generated POM | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.7 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.8 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
shell: bash | ||
|
||
- name: Create Jars | ||
|
@@ -131,13 +131,13 @@ jobs: | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | ||
|
||
- name: Compile command line | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNetCLI\KNetCLI.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNetCLI\KNetCLI.csproj | ||
|
||
- name: Compile KNet Connect | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNetConnect\KNetConnect.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNetConnect\KNetConnect.csproj | ||
|
||
- name: Compile KNetPS | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNetPS\KNetPS.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNetPS\KNetPS.csproj | ||
|
||
- uses: nuget/[email protected] | ||
with: | ||
|
@@ -161,13 +161,13 @@ jobs: | |
shell: pwsh | ||
|
||
- name: Recompile to create nuget packages | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNet.sln | ||
|
||
- name: Clear documentation folder | ||
run: Remove-Item .\docs\* -Recurse -Force -Exclude _config.yml | ||
|
||
- name: Build documentation | ||
run: | | ||
choco install docfx | ||
cd src\net\Documentation | ||
docfx | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNet.sln | ||
|
||
# - name: Clear documentation folder | ||
# run: Remove-Item .\docs\* -Recurse -Force -Exclude _config.yml | ||
# | ||
# - name: Build documentation | ||
# run: | | ||
# choco install docfx | ||
# cd src\documentation | ||
# docfx |
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
submodules: 'true' | ||
|
||
- name: Pre compile | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src/net/KNet/KNet.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src/net/KNet/KNet.csproj | ||
|
||
- name: Set up Apache Maven Central | ||
uses: actions/setup-java@v3 | ||
|
@@ -37,7 +37,7 @@ jobs: | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase | ||
|
||
- name: Install local file to be used within Javadoc plugin of generated POM | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.7 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.8 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
shell: bash | ||
|
||
- name: Create Jars | ||
|
@@ -80,7 +80,7 @@ jobs: | |
submodules: 'true' | ||
|
||
- name: Pre compile | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src/net/KNet/KNet.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src/net/KNet/KNet.csproj | ||
|
||
- name: Set up Apache Maven Central | ||
uses: actions/setup-java@v3 | ||
|
@@ -95,7 +95,7 @@ jobs: | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase | ||
|
||
- name: Install local file to be used within Javadoc plugin of generated POM | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.7 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.8 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
shell: bash | ||
|
||
- name: Create Jars | ||
|
@@ -146,7 +146,7 @@ jobs: | |
submodules: 'true' | ||
|
||
- name: Pre compile | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNet\KNet.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNet\KNet.csproj | ||
|
||
- name: Set up Apache Maven Central | ||
uses: actions/setup-java@v3 | ||
|
@@ -161,7 +161,7 @@ jobs: | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase | ||
|
||
- name: Install local file to be used within Javadoc plugin of generated POM | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.7 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
run: mvn install:install-file -DgroupId=JCOBridge -DartifactId=JCOBridge -Dversion=2.5.8 -Dpackaging=jar -Dfile=../../../bin/net6.0/JCOBridge.jar -f ./src/java/knet/pom.xml | ||
shell: bash | ||
|
||
- name: Create Jars | ||
|
@@ -172,13 +172,13 @@ jobs: | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | ||
|
||
- name: Compile KNet CLI | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNetCLI\KNetCLI.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNetCLI\KNetCLI.csproj | ||
|
||
- name: Compile KNet Connect | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNetConnect\KNetConnect.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNetConnect\KNetConnect.csproj | ||
|
||
- name: Compile KNetPS | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNetPS\KNetPS.csproj | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNetPS\KNetPS.csproj | ||
|
||
- uses: nuget/[email protected] | ||
with: | ||
|
@@ -195,7 +195,7 @@ jobs: | |
shell: pwsh | ||
|
||
- name: Recompile to create nuget packages | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" src\net\KNet.sln | ||
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030" src\net\KNet.sln | ||
|
||
- name: Authenticate to GitHub | ||
run: dotnet nuget add source --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" | ||
|
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.