From 6b0aeb7f9a774e2e02eb4b25e9b9f0a5d6b3eba6 Mon Sep 17 00:00:00 2001 From: Sebastian Reimers Date: Sun, 18 Dec 2022 07:30:30 +0100 Subject: [PATCH] ci: fix re cmake build --- .github/workflows/build.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a88f5ea..8e38133 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,10 +37,16 @@ jobs: if: ${{ runner.os == 'macOS' }} run: | echo "OPENSSL_ROOT_DIR=/usr/local/opt/openssl" >> $GITHUB_ENV + + - name: make re/rem + shell: bash + run: | + cd .. + for p in re rem; do + cmake -S $p -B $p/build + cmake --build $p/build -j + done - name: retest run: | - cd .. - make -C re libre.a - cmake -S rem -B rem/build && cmake --build rem/build - cd retest && cmake . && make && ./retest -r + cd ../retest && make && ./retest -r