aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2022-09-08 13:46:05 +0300
committerMatias Elo <matias.elo@nokia.com>2022-09-08 13:46:05 +0300
commitac602aa3978f5ac88e5247e64a6c437bce2002bf (patch)
tree3f55c04e4d70ba8c72f0939edb42ceb813d7c077 /.github
parent3b9d1514e55955953786211f1fdec8e97f3688c7 (diff)
parentaca79b03168b462c7197a02dae08f815f2f975a4 (diff)
Merge tag 'v1.37.2.0' of https://github.com/OpenDataPlane/odp into odp-dpdk
Signed-off-by: Matias Elo <matias.elo@nokia.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-pipeline-arm64.yml5
-rw-r--r--.github/workflows/ci-pipeline.yml8
2 files changed, 7 insertions, 6 deletions
diff --git a/.github/workflows/ci-pipeline-arm64.yml b/.github/workflows/ci-pipeline-arm64.yml
index b16417ade..23b1280c3 100644
--- a/.github/workflows/ci-pipeline-arm64.yml
+++ b/.github/workflows/ci-pipeline-arm64.yml
@@ -52,14 +52,15 @@ jobs:
if: ${{ failure() }}
run: find . -name config.log -exec cat {} \;
- Build_gcc-10:
+ Build_gcc:
if: ${{ github.repository == 'OpenDataPlane/odp-dpdk' }}
runs-on: [self-hosted, ARM64]
env:
- CC: gcc-10
+ OS: ubuntu_22.04
strategy:
fail-fast: false
matrix:
+ cc: [gcc-10, gcc-11, gcc-12]
conf: ['', '--enable-lto']
steps:
- uses: AutoModality/action-clean@v1.1.0
diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml
index fd76a2f82..d732d69f5 100644
--- a/.github/workflows/ci-pipeline.yml
+++ b/.github/workflows/ci-pipeline.yml
@@ -174,18 +174,18 @@ jobs:
if: ${{ failure() }}
run: find . -name config.log -exec cat {} \;
- Build_gcc-10:
+ Build_gcc:
runs-on: ubuntu-18.04
env:
- CC: gcc-10
- OS: ubuntu_20.04
+ OS: ubuntu_22.04
strategy:
fail-fast: false
matrix:
+ cc: [gcc-10, gcc-11, gcc-12]
conf: ['', '--enable-lto']
steps:
- uses: actions/checkout@v2
- - run: sudo docker run -i -v `pwd`:/odp --privileged --shm-size 8g -e CC="${CC}" -e CXX=g++-10
+ - run: sudo docker run -i -v `pwd`:/odp --privileged --shm-size 8g -e CC="${{matrix.cc}}"
-e CONF="${{matrix.conf}}" $CONTAINER_NAMESPACE/odp-ci-${OS}-${ARCH} /odp/scripts/ci/build_${ARCH}.sh
- name: Failure log
if: ${{ failure() }}