Skip to content

Commit 8e10f12

Browse files
authored
ci: improve install/fedora-components build (#5785)
The build was not really testing the runtime components, as it used static libraries (I mistyped `BUILD_SHARED_LIBS` as `SHARED_LIBS`).
1 parent 3fbf12a commit 8e10f12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/kokoro/install/Dockerfile.fedora-components

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ RUN mkdir -p /h/.ccache; \
9090
fi; \
9191
true # Ignore all errors, failures in caching should not break the build
9292

93-
RUN cmake -DSHARED_LIBS=ON -DBUILD_TESTING=OFF -H. -Bcmake-out
93+
RUN cmake -DBUILD_SHARED_LIBS=ON -DBUILD_TESTING=OFF -H. -Bcmake-out
9494
RUN cmake --build cmake-out -- -j "${NCPU:-4}"
9595

9696
# This is the fun part. We will create a "stage" that contains the source

0 commit comments

Comments
 (0)