github: fix dep ordering
This commit is contained in:
parent
20b899fd5e
commit
1fe15afb57
1 changed files with 19 additions and 19 deletions
38
.github/workflows/main.yml
vendored
38
.github/workflows/main.yml
vendored
|
|
@ -161,6 +161,25 @@ jobs:
|
|||
|
||||
# ----------------------------------------------------------------
|
||||
|
||||
- name: Clone pyutil
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: Rconybea/xo-pyutil
|
||||
path: repo/pyutil
|
||||
|
||||
- name: Configure pyutil
|
||||
# configure cmake for pyutil in dedicated build directory.
|
||||
run: cmake -B ${{github.workspace}}/build_pyutil -DCMAKE_MODULE_PATH=${{github.workspace}}/local/share/cmake -DCMAKE_PREFIX_PATH=${{github.workspace}}/local -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/local repo/pyutil
|
||||
|
||||
- name: Build pyutil
|
||||
run: cmake --build ${{github.workspace}}/build_pyutil --config ${{env.BUILD_TYPE}}
|
||||
|
||||
- name: Install pyutil
|
||||
# install into ${{github.workspace}}/local
|
||||
run: cmake --install ${{github.workspace}}/build_pyutil
|
||||
|
||||
# ----------------------------------------------------------------
|
||||
|
||||
- name: Clone pywebutil
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
|
|
@ -294,25 +313,6 @@ jobs:
|
|||
|
||||
# ----------------------------------------------------------------
|
||||
|
||||
- name: Clone pyutil
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: Rconybea/xo-pyutil
|
||||
path: repo/pyutil
|
||||
|
||||
- name: Configure pyutil
|
||||
# configure cmake for pyutil in dedicated build directory.
|
||||
run: cmake -B ${{github.workspace}}/build_pyutil -DCMAKE_MODULE_PATH=${{github.workspace}}/local/share/cmake -DCMAKE_PREFIX_PATH=${{github.workspace}}/local -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/local repo/pyutil
|
||||
|
||||
- name: Build pyutil
|
||||
run: cmake --build ${{github.workspace}}/build_pyutil --config ${{env.BUILD_TYPE}}
|
||||
|
||||
- name: Install pyutil
|
||||
# install into ${{github.workspace}}/local
|
||||
run: cmake --install ${{github.workspace}}/build_pyutil
|
||||
|
||||
# ----------------------------------------------------------------
|
||||
|
||||
- name: Clone pyreflect
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue