Skip to content

Commit

Permalink
Fix CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
neatudarius committed Aug 21, 2024
1 parent b12763b commit 03cbf60
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .ci/docker/rockylinux.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,6 @@ ARG cmake_args=
ENV CC="$cc" CXX="$cxx" CMAKE_GENERATOR="Ninja" CMAKE_EXPORT_COMPILE_COMMANDS=on
RUN cmake -B build -S . "$cmake_args"
RUN cmake --build build --verbose
RUN DESTDIR=build/staging cmake --install build --prefix /opt/beman/example --component libbeman_example-dev
RUN find build/staging -type f
RUN cmake --install build --prefix /opt/Beman.Example
RUN find /opt/Beman.Example -type f

4 changes: 2 additions & 2 deletions .ci/docker/ubuntu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ RUN sysctl vm.mmap_rnd_bits=28
ENV CC="$cc" CXX="$cxx" CMAKE_GENERATOR="Ninja" CMAKE_EXPORT_COMPILE_COMMANDS=on
RUN cmake -B build -S . "$cmake_args"
RUN cmake --build build --verbose
RUN DESTDIR=build/staging cmake --install build --prefix /opt/beman/example --component libbeman_example-dev
RUN find build/staging -type f
RUN cmake --install build --prefix /opt/Beman.Example
RUN find /opt/Beman.Example -type f
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

# TODO Darius: Find CMake minimum required version.
cmake_minimum_required(VERSION 3.23)

project(
Expand Down

0 comments on commit 03cbf60

Please sign in to comment.