Fedora/Rawhide #447
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fedora/Rawhide | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.event.number || github.ref }}" | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
build_and_test: | |
strategy: | |
matrix: | |
cc: [ gcc, clang ] | |
name: ${{ matrix.cc }} | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }} | |
container: | |
image: fedora:rawhide | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
dnf -y install git make clang cmake ninja-build autoconf automake libtool diffutils patch | |
- name: Pull upstream source | |
run: | | |
./update.sh | |
- name: Build | |
run: | | |
CC=${{ matrix.cc }} cmake -GNinja -DBUILD_SHARED_LIBS=ON . | |
ninja | |
- name: Test | |
run: | | |
ninja test |