Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

ci: fix re cmake build #115

Merged
merged 1 commit into from
Dec 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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