Skip to content

Commit

Permalink
CI: add Ubuntu-24.04 and remove CentOS 7
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomini committed Oct 1, 2024
1 parent a405923 commit a17e328
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
push:

jobs:
centos7:

el9:
runs-on: ubuntu-latest
container: centos:centos7
container: almalinux:9
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install packages
run: |
Expand All @@ -23,35 +23,35 @@ jobs:
./configure
make
el9:
runs-on: ubuntu-latest
container: almalinux:9
ubuntu2004:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4

- 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
sudo apt update
sudo apt install -y make automake libtool pkg-config g++ libssl-dev libgsoap-dev gsoap libexpat-dev
- name: Build
run: |
./autogen.sh
./configure
make
ubuntu2004:
runs-on: ubuntu-20.04
ubuntu2404:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

- name: Install packages
run: |
sudo apt update
sudo apt install make automake libtool pkg-config g++ libssl-dev libgsoap-dev gsoap libexpat-dev
sudo apt install -y make automake libtool pkg-config g++ libssl-dev libgsoap-dev gsoap libexpat-dev
- name: Build
run: |
./autogen.sh
./configure
make

0 comments on commit a17e328

Please sign in to comment.