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 a78b5c4
Show file tree
Hide file tree
Showing 2 changed files with 5 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

0 comments on commit a78b5c4

Please sign in to comment.