Skip to content

Commit

Permalink
Add CI for CentOS 9 Stream
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomini committed Dec 30, 2022
1 parent 5e3bdc7 commit 845260c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,20 @@ jobs:
./autogen.sh
./configure
make
centos9:
runs-on: ubuntu-latest
container: quay.io/centos/centos:stream9
steps:
- uses: actions/checkout@v3

- name: Install packages
run: |
yum install -y epel-release
yum install -y make file automake libtool gcc-c++ openssl-devel gsoap-devel gsoap expat-devel bison
- name: Build
run: |
./autogen.sh
./configure
make

0 comments on commit 845260c

Please sign in to comment.