github: + missing randomgen dep
This commit is contained in:
parent
638fb898ff
commit
d392d5d593
1 changed files with 19 additions and 0 deletions
19
.github/workflows/main.yml
vendored
19
.github/workflows/main.yml
vendored
|
|
@ -177,6 +177,25 @@ jobs:
|
|||
|
||||
# ----------------------------------------------------------------
|
||||
|
||||
- name: Clone randomgen
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: Rconybea/randomgen
|
||||
path: repo/randomgen
|
||||
|
||||
- name: Configure randomgen
|
||||
# configure cmake for randomgen in dedicated build directory.
|
||||
run: cmake -B ${{github.workspace}}/build_randomgen -DCMAKE_MODULE_PATH=${{github.workspace}}/local/share/cmake -DCMAKE_PREFIX_PATH=${{github.workspace}}/local -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/local repo/randomgen
|
||||
|
||||
- name: Build randomgen
|
||||
run: cmake --build ${{github.workspace}}/build_randomgen --config ${{env.BUILD_TYPE}}
|
||||
|
||||
- name: Install randomgen
|
||||
# install into ${{github.workspace}}/local
|
||||
run: cmake --install ${{github.workspace}}/build_randomgen
|
||||
|
||||
# ----------------------------------------------------------------
|
||||
|
||||
- name: Configure self (reactor)
|
||||
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
|
||||
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue