Skip to content

Commit

Permalink
ci: convert fedora to cmake (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh authored Sep 17, 2022
1 parent 01b30a1 commit 1a3aa77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
- uses: actions/checkout@v2
- name: install devel tools
run: |
yum -y install gcc clang make openssl-devel
yum -y install gcc clang cmake make openssl-devel zlib-devel
- name: make info
run: |
echo "OS: ${{ matrix.os }}"
echo "--- ${{ matrix.compiler }} DEBUG VERSION ---"
${{ matrix.compiler }} - --version
echo "--- make info ---"
make info
cmake --version
- name: make
run: make EXTRA_CFLAGS=-Werror CCACHE=
run: |
cmake -B build -DCMAKE_C_FLAGS="-Werror" && cmake --build build -j

0 comments on commit 1a3aa77

Please sign in to comment.