From e33b5a1098925b014480f98fff44c9e25b656485 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Thu, 16 Jan 2025 11:15:43 +0100 Subject: [PATCH] ci: reducing minimal and console to two versions, and after local and remote (#3669) * ci: reducing minimal and console to two versions, and after local and remote * chore: adding changelog file 3669.maintenance.md [dependabot-skip] --------- Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> --- .github/workflows/ci.yml | 11 ++++++----- doc/changelog.d/3669.maintenance.md | 1 + 2 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 doc/changelog.d/3669.maintenance.md diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 019e6138b2..5251b30361 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,6 @@ env: ON_CI: True PYTEST_ARGUMENTS: '-vvv -rxXsa --color=yes --durations=10 --random-order --random-order-bucket=class --maxfail=10 --reruns 3 --reruns-delay 4 --cov=ansys.mapdl.core --cov-report=html --timeout=180' - BUILD_CHEATSHEET: True PYMAPDL_DEBUG_TESTING: True @@ -788,11 +787,12 @@ jobs: name: "Local-min: ${{ matrix.mapdl-version }}" runs-on: ubuntu-22.04 if: github.ref != 'refs/heads/main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' - needs: [smoke-tests, build-test-local-minimal-matrix] + needs: [build-test-ubuntu-local, build-test-remote] timeout-minutes: 75 strategy: fail-fast: false - matrix: ${{fromJson(needs.build-test-local-minimal-matrix.outputs.matrix)}} + matrix: + mapdl-version: ['latest-ubuntu', 'v25.1-ubuntu'] container: image: ghcr.io/ansys/mapdl:${{ matrix.mapdl-version }} options: -u=0:0 --oom-kill-disable --memory=6656MB --memory-swap=16896MB --shm-size=1gb --entrypoint /bin/bash @@ -916,11 +916,12 @@ jobs: name: "Local-min-console: ${{ matrix.mapdl-version }}" runs-on: ubuntu-22.04 if: github.ref != 'refs/heads/main' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' - needs: [smoke-tests, build-test-local-minimal-matrix] + needs: [build-test-ubuntu-local, build-test-remote] timeout-minutes: 75 strategy: fail-fast: false - matrix: ${{fromJson(needs.build-test-local-minimal-matrix.outputs.matrix)}} + matrix: + mapdl-version: ['latest-ubuntu', 'v25.1-ubuntu'] container: image: ghcr.io/ansys/mapdl:${{ matrix.mapdl-version }} options: -u=0:0 --oom-kill-disable --memory=6656MB --memory-swap=16896MB --shm-size=1gb --entrypoint /bin/bash diff --git a/doc/changelog.d/3669.maintenance.md b/doc/changelog.d/3669.maintenance.md new file mode 100644 index 0000000000..41a044c6c5 --- /dev/null +++ b/doc/changelog.d/3669.maintenance.md @@ -0,0 +1 @@ +ci: reducing minimal and console to two versions, and after local and remote \ No newline at end of file