github: + missing callback dep
This commit is contained in:
parent
5c4fb10056
commit
0653f4f69e
1 changed files with 19 additions and 0 deletions
19
.github/workflows/main.yml
vendored
19
.github/workflows/main.yml
vendored
|
|
@ -123,6 +123,25 @@ jobs:
|
|||
|
||||
# ----------------------------------------------------------------
|
||||
|
||||
- name: Clone callback
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: Rconybea/xo-callback
|
||||
path: repo/callback
|
||||
|
||||
- name: Configure callback
|
||||
# configure cmake for callback in dedicated build directory.
|
||||
run: cmake -B ${{github.workspace}}/build_callback -DCMAKE_MODULE_PATH=${{github.workspace}}/local/share/cmake -DCMAKE_PREFIX_PATH=${{github.workspace}}/local -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/local repo/callback
|
||||
|
||||
- name: Build callback
|
||||
run: cmake --build ${{github.workspace}}/build_callback --config ${{env.BUILD_TYPE}}
|
||||
|
||||
- name: Install callback
|
||||
# install into ${{github.workspace}}/local
|
||||
run: cmake --install ${{github.workspace}}/build_callback
|
||||
|
||||
# ----------------------------------------------------------------
|
||||
|
||||
- name: Clone webutil
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue