Skip to content

Commit

Permalink
github_ci: add test job for gcc 14
Browse files Browse the repository at this point in the history
Add CI build job for GCC 14. Also, static/LTO build jobs have been removed
for GCC versions between 10 and 14 to speed up the CI.

Signed-off-by: Matias Elo <[email protected]>
Reviewed-by: Janne Peltonen <[email protected]>
  • Loading branch information
MatiasElo committed Oct 2, 2024
1 parent 47d0d86 commit af6718c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-pipeline-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@ jobs:
- if: ${{ failure() }}
uses: ./.github/actions/build-failure-log

Build_static_u22:
Build_static_u24:
if: ${{ github.repository == 'OpenDataPlane/odp' }}
runs-on: ah-ubuntu_22_04-c7g_2x-50
env:
OS: ubuntu_22.04
OS: ubuntu_24.04
CONF: "--disable-shared --without-openssl --without-pcap"
strategy:
fail-fast: false
matrix:
cc_ver: [10, 11, 12]
cc_ver: [10, 14]
conf: ['', '--enable-lto']
steps:
- uses: OpenDataPlane/action-clean-up@main
Expand All @@ -94,15 +94,15 @@ jobs:
- if: ${{ failure() }}
uses: ./.github/actions/build-failure-log

Build_gcc_u22:
Build_gcc_u24:
if: ${{ github.repository == 'OpenDataPlane/odp' }}
runs-on: ah-ubuntu_22_04-c7g_2x-50
env:
OS: ubuntu_22.04
OS: ubuntu_24.04
strategy:
fail-fast: false
matrix:
cc_ver: [10, 11, 12, 13]
cc_ver: [10, 11, 12, 13, 14]
conf: ['', '--enable-abi-compat']
steps:
- uses: OpenDataPlane/action-clean-up@main
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@ jobs:
- if: ${{ failure() }}
uses: ./.github/actions/build-failure-log

Build_static_u22:
Build_static_u24:
runs-on: ubuntu-20.04
env:
OS: ubuntu_22.04
OS: ubuntu_24.04
CONF: "--disable-shared --without-openssl --without-pcap"
strategy:
fail-fast: false
matrix:
cc_ver: [10, 11, 12]
cc_ver: [10, 14]
conf: ['', '--enable-lto']
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -214,14 +214,14 @@ jobs:
- if: ${{ failure() }}
uses: ./.github/actions/build-failure-log

Build_gcc_u22:
Build_gcc_u24:
runs-on: ubuntu-20.04
env:
OS: ubuntu_22.04
OS: ubuntu_24.04
strategy:
fail-fast: false
matrix:
cc_ver: [10, 11, 12, 13]
cc_ver: [10, 11, 12, 13, 14]
conf: ['', '--enable-abi-compat']
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit af6718c

Please sign in to comment.