diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 417e16813c7..1a12ab27572 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -6,6 +6,7 @@ env: CC: gcc CONTAINER_NAMESPACE: ghcr.io/opendataplane/odp-docker-images OS: ubuntu_20.04 + ML_CONTAINER: ghcr.io/jereleppanen/odp-docker-images/odp-ci-ubuntu_22.04-x86_64:ml jobs: Checkpatch: @@ -127,7 +128,7 @@ jobs: steps: - 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="${CONF} ${{matrix.conf}}" $CONTAINER_NAMESPACE/odp-ci-${OS}-${ARCH} /odp/scripts/ci/build_static.sh + -e CONF="${CONF} ${{matrix.conf}}" $ML_CONTAINER /odp/scripts/ci/build_static.sh - if: ${{ failure() }} uses: ./.github/actions/build-failure-log @@ -258,7 +259,7 @@ jobs: steps: - 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} /odp/scripts/ci/build_${ARCH}.sh + -e CONF="${{matrix.conf}}" $ML_CONTAINER /odp/scripts/ci/build_${ARCH}.sh - if: ${{ failure() }} uses: ./.github/actions/build-failure-log @@ -283,7 +284,7 @@ jobs: steps: - uses: actions/checkout@v3 - run: sudo docker run -i -v `pwd`:/odp --privileged --shm-size 8g -e CC="${{matrix.cc}}" - -e CONF="${CONF}" $CONTAINER_NAMESPACE/odp-ci-${OS}-${ARCH} /odp/scripts/ci/build_${ARCH}.sh + -e CONF="${CONF}" $ML_CONTAINER /odp/scripts/ci/build_${ARCH}.sh - if: ${{ failure() }} uses: ./.github/actions/build-failure-log @@ -349,7 +350,7 @@ jobs: steps: - uses: actions/checkout@v3 - run: sudo docker run -i -v `pwd`:/odp --privileged --shm-size 8g -e CC="${{matrix.cc}}" -e ARCH="${ARCH}" - -e CONF="${CONF}" $CONTAINER_NAMESPACE/odp-ci-${{matrix.os}}-${ARCH} /odp/scripts/ci/check.sh + -e CONF="${CONF}" $ML_CONTAINER /odp/scripts/ci/check.sh - if: ${{ failure() }} uses: ./.github/actions/run-failure-log