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

ci: migrate from make to CMake #81

Merged
merged 4 commits into from
Sep 16, 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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
compiler: [gcc, clang]
os: [ubuntu-18.04, ubuntu-20.04, macos-latest]
os: [ubuntu-20.04, macos-latest]
exclude:
- os: macos-latest
compiler: gcc
Expand Down Expand Up @@ -42,5 +42,5 @@ jobs:
run: |
cd ..
make -C re libre.a
make -C rem EXTRA_CFLAGS=-Werror CCACHE= librem.a
cd retest && make STATIC=1 LIBRE_SO=../re && ./retest -r
cmake -S rem -B rem/build && cmake --build rem/build
cd retest && cmake . && make && ./retest -r