Skip to content

Commit

Permalink
Merge pull request #1876 from chipitsine/fedora_rawhide
Browse files Browse the repository at this point in the history
CI: introduce monthly Fedora Rawhide builds
  • Loading branch information
chipitsine authored Aug 6, 2023
2 parents adccc6b + a2aa254 commit 5d667e4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/fedora-rawhide.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Fedora/Rawhide

on:
schedule:
- cron: "0 0 25 * *"
push:
workflow_dispatch:

permissions:
contents: read

jobs:
build_and_test:
strategy:
matrix:
cc: [ gcc, clang ]
name: ${{ matrix.cc }}
runs-on: ubuntu-latest
container:
image: fedora:rawhide
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Install dependencies
run: |
dnf -y install git cmake ncurses-devel openssl-devel libsodium-devel readline-devel zlib-devel gcc-c++ clang
- name: Compile with ${{ matrix.cc }}
run: |
export CC=${{ matrix.cc }}
./configure
make -C build

0 comments on commit 5d667e4

Please sign in to comment.