workflow: build indentlog (wip - broken)

This commit is contained in:
Roland Conybeare 2024-03-15 20:35:35 -04:00
commit 99190e4615

View file

@ -53,11 +53,11 @@ jobs:
echo "::endgroup"
echo "::group::compile ${XONAME}"
cmake --build ${{github.workspace}}/build_xo-cmake --config ${{env.BUILD_TYPE}}
cmake --build ${BUILDDIR} --config ${{env.BUILD_TYPE}}
echo "::endgroup"
echo "::group::local install ${XONAME}"
cmake --install ${{github.workspace}}/build_xo-cmake
cmake --install ${BUILDDIR}
echo "::endgroup"
echo "::group::local dir tree"
@ -66,15 +66,15 @@ jobs:
# ----------------------------------------------------------------
- name: clone xo-refcnt
- name: clone xo-indentlog
uses: actions/checkout@v3
with:
repository: Rconybea/refcnt
path: repo/xo-refcnt
repository: Rconybea/indentlog
path: repo/xo-indentlog
- name: build xo-refcnt
- name: build xo-indentlog
run: |
XONAME=xo-refcnt
XONAME=xo-indentlog
XOSRC=repo/${XONAME}
BUILDDIR=${{github.workspace}}/build_${XONAME}
PREFIX=${{github.workspace}}/local
@ -87,7 +87,7 @@ jobs:
cmake -B ${BUILDDIR} -DCMAKE_INSTALL_PREFIX=${PREFIX} ${XOSRC}
echo "::endgroup"
echo "::group::compile ${XONAME}
echo "::group::compile ${XONAME}"
cmake --build ${BUILDDIR} --config ${{env.BUILD_TYPE}}
echo "::endgroup"