workflow: + xo-pyreflect (wip - broken)

This commit is contained in:
Roland Conybeare 2024-03-15 21:22:35 -04:00
commit 209f2be304

View file

@ -521,6 +521,41 @@ jobs:
# ----------------------------------------------------------------
- name: clone xo-pyreflect
uses: actions/checkout@v3
with:
repository: Rconybea/xo-pyreflect
path: repo/xo-pyreflect
- name: build xo-pyreflect
run: |
XONAME=xo-pyreflect
XOSRC=repo/${XONAME}
BUILDDIR=${{github.workspace}}/build_${XONAME}
PREFIX=${{github.workspace}}/local
echo "::group::repo dir tree"
tree -L 2 repo
echo "::endgroup"
echo "::group::configure ${XONAME}"
cmake -B ${BUILDDIR} -DCMAKE_INSTALL_PREFIX=${PREFIX} ${XOSRC}
echo "::endgroup"
echo "::group::compile ${XONAME}"
cmake --build ${BUILDDIR} --config ${{env.BUILD_TYPE}} -j
echo "::endgroup"
echo "::group::local install ${XONAME}"
cmake --install ${BUILDDIR}
echo "::endgroup"
echo "::group::local dir tree"
tree -L 3 ${PREFIX}
echo "::endgroup"
# ----------------------------------------------------------------
- name: clone xo-pyreactor
uses: actions/checkout@v3
with: