From 30188c46f510f11c8b1b553b685367a2155588b7 Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Fri, 18 Aug 2023 19:00:45 +0200 Subject: CI: fedora rawhide follow up --- .github/workflows/fedora-rawhide.yml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/.github/workflows/fedora-rawhide.yml b/.github/workflows/fedora-rawhide.yml index f593815..092a437 100644 --- a/.github/workflows/fedora-rawhide.yml +++ b/.github/workflows/fedora-rawhide.yml @@ -22,19 +22,13 @@ jobs: - name: Install dependencies run: | dnf -y install git make clang cmake ninja-build autoconf automake libtool diffutils patch - - name: Configure + - name: Pull upstream source run: | - ./autogen.sh - ./configure - - name: Make dist + ./update.sh + - name: Build run: | - make dist - tar zxvf libressl-*.tar.gz - rm libressl-*.tar.gz - - name: Build and test - run: | - cd libressl-* - mkdir build-shared - cmake -GNinja -DBUILD_SHARED_LIBS=ON .. + CC=${{ matrix.cc }} cmake -GNinja -DBUILD_SHARED_LIBS=ON . ninja + - name: Test + run: | ninja test -- cgit v1.2.3-55-g6feb