aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci-pipeline-arm64.yml
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2023-06-09 16:30:50 +0300
committerMatias Elo <matias.elo@nokia.com>2023-06-13 13:23:50 +0300
commitfa2a99a193bb2c48d4eceab146b1dd3d0ced10b2 (patch)
tree49a5d8718d2cb983dd42845cb3eeb2c37eb68956 /.github/workflows/ci-pipeline-arm64.yml
parent08d3aa2ab01c5fa25c78fb9cc0899c55185c1718 (diff)
github_ci: change gcc-13 test container
GCC 13 is now available for Ubuntu 22.04, so the separate Ubuntu 23.04 based job can be removed. Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Tuomas Taipale <tuomas.taipale@nokia.com>
Diffstat (limited to '.github/workflows/ci-pipeline-arm64.yml')
-rw-r--r--.github/workflows/ci-pipeline-arm64.yml21
1 files changed, 1 insertions, 20 deletions
diff --git a/.github/workflows/ci-pipeline-arm64.yml b/.github/workflows/ci-pipeline-arm64.yml
index ca166e8a5..1b516b274 100644
--- a/.github/workflows/ci-pipeline-arm64.yml
+++ b/.github/workflows/ci-pipeline-arm64.yml
@@ -80,7 +80,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- cc_ver: [10, 11, 12]
+ cc_ver: [10, 11, 12, 13]
conf: ['', '--enable-abi-compat']
steps:
- uses: OpenDataPlane/action-clean-up@main
@@ -91,25 +91,6 @@ jobs:
if: ${{ failure() }}
run: find . -name config.log -exec cat {} \;
- Build_gcc_u23:
- if: ${{ github.repository == 'OpenDataPlane/odp' }}
- runs-on: [self-hosted, ARM64]
- env:
- OS: ubuntu_23.04
- strategy:
- fail-fast: false
- matrix:
- cc_ver: [13]
- conf: ['', '--enable-abi-compat']
- steps:
- - uses: OpenDataPlane/action-clean-up@main
- - uses: actions/checkout@v3
- - run: sudo docker run -i -v `pwd`:/odp --privileged --shm-size 8g -e CC="gcc-${{matrix.cc_ver}}" -e CXX="g++-${{matrix.cc_ver}}"
- -e CONF="${{matrix.conf}}" $CONTAINER_NAMESPACE/odp-ci-${OS}-${ARCH}-native /odp/scripts/ci/build_${ARCH}.sh
- - name: Failure log
- if: ${{ failure() }}
- run: find . -name config.log -exec cat {} \;
-
Build_out-of-tree:
if: ${{ github.repository == 'OpenDataPlane/odp' }}
runs-on: [self-hosted, ARM64]