szaszm commented on code in PR #2186:
URL: https://github.com/apache/nifi-minifi-cpp/pull/2186#discussion_r3453531484
##########
.github/workflows/ci.yml:
##########
@@ -552,8 +555,55 @@ jobs:
with:
name: behavex_output_modular
path: build/behavex_output_modular
+ rusty_docker_tests:
+ name: "Rusty Docker integration tests (x86_64)"
+ needs: docker_build
+ runs-on: ubuntu-24.04
+ timeout-minutes: 20
+ steps:
+ - id: checkout
+ uses: actions/checkout@v6
+ - id: run_cmake
+ name: Run CMake
+ run: |
+ mkdir build
+ cd build
+ cmake ${DOCKER_CMAKE_FLAGS} ..
+ - name: Download artifact
+ uses: actions/download-artifact@v8
+ with:
+ name: minifi_docker
+ path: build
+ - name: Load Docker image
+ run: |
+ docker load --input ./build/minifi_docker.tar && docker tag
apacheminificpp:1.0.0 apacheminificpp:behave
Review Comment:
Can we avoid naming the current version here? Just to minimize the number of
places we need to change after a release.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]