Skip to content

Commit 3377e45

Browse files
authored
Fix failing nightly-windows.yml (#1264)
This action has been [failing for a while](https://github.com/hazelcast/hazelcast-cpp-client/actions/workflows/nightly-windows.yml?query=is%3Afailure), see the [most recent failure](https://github.com/hazelcast/hazelcast-cpp-client/actions/runs/13434821788). The most recent error seems to have been introduced in #1243 where a copy-paste error referenced the nested `build_type.type` element of the matrix which does not exist for the Windows jobs due to a difference in configuration. Testing blocked by #1262.
1 parent 91d9d3b commit 3377e45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/nightly-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
GH_TOKEN: ${{ secrets.GH_TOKEN }}
101101
BOOST_VERSION: ${{ matrix.boost.version }}
102102
THRIFT_VERSION: 0.13.0
103-
BUILD_TYPE: ${{ matrix.build_type.type }}
103+
BUILD_TYPE: ${{ matrix.build_type }}
104104
SHARED_LIBS_TOGGLE: ${{ matrix.shared_libs.toggle }}
105105
OPENSSL_TOGGLE: ${{ matrix.with_openssl.toggle }}
106106
ARCH_CHOCO_OPTIONS: ${{ matrix.arch.choco_options }}

0 commit comments

Comments
 (0)