[
https://issues.apache.org/jira/browse/GEODE-8949?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17289355#comment-17289355
]
ASF GitHub Bot commented on GEODE-8949:
---------------------------------------
mmartell commented on a change in pull request #750:
URL: https://github.com/apache/geode-native/pull/750#discussion_r581406198
##########
File path: clicache/integration-test/CMakeLists.txt
##########
@@ -13,108 +13,110 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-project(nativeclient.tests.clicache)
+project(Apache.Geode.Client.UnitTests CSharp )
-set (NUNIT "C:\\Program Files (x86)\\NUnit 2.6.4")
+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/packages.config
${CMAKE_CURRENT_BINARY_DIR}/packages.config COPYONLY)
-if (64 EQUAL ${BUILD_BITS})
- set (NUNIT_CONSOLE "nunit-console")
-else()
- set (NUNIT_CONSOLE "nunit-console-x86")
-endif()
+file(GLOB_RECURSE SOURCE RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.cs")
+file(GLOB_RECURSE XML_SOURCE RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.xml")
+set(RESOURCES
+ ${XML_SOURCE}
+ geode.properties.mixed
+ geode.properties.nativeclient
+ system.properties
+)
+
+add_library(Apache.Geode.Client.UnitTests SHARED
+ NUnitTestAddTests.ps1
Review comment:
Awesome. Very elegant reflection based discovery. And using Powershell
Core no less!
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> Create a Continuous Integration Pipeline
> ----------------------------------------
>
> Key: GEODE-8949
> URL: https://issues.apache.org/jira/browse/GEODE-8949
> Project: Geode
> Issue Type: Improvement
> Components: native client
> Reporter: Michael Martell
> Priority: Major
> Labels: pull-request-available
>
> This will be our open source CI for publishing to the Apache Software
> Foundation. Two primary tenets are:
> * based on Concourse
> * PRs will trigger the CI pipeline and can't be merged until they pass the CI
> Note: The bulk of this work has been completed in draft [PR
> #716|http://github.com/apache/geode-native/pull/716]. See that PR for further
> details.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)