Skip to content

Commit 6535fff

Browse files
committed
Merge branch 'main' into fix/aplot-index-error
2 parents 117eeb7 + 70c6b3b commit 6535fff

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.ci/start_mapdl_ubuntu.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ docker run \
1313
-e ANSYS_LOCK="OFF" \
1414
-p $PYMAPDL_PORT:50052 \
1515
-p $PYMAPDL_DB_PORT:50055 \
16+
-w /jobs \
17+
-u=0:0 \
1618
$MAPDL_IMAGE /ansys_inc/v222/ansys/bin/mapdl -grpc -dir /jobs -smp -np 2 > log.txt &
1719
grep -q 'Server listening on' <(timeout 60 tail -f log.txt)
1820
# python -c "from ansys.mapdl.core import launch_mapdl; print(launch_mapdl())"

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ jobs:
246246
if compgen -G './logs-build-docs/*.out' > /dev/null ;then for f in ./logs-build-docs/*.out; do echo "::group:: Output file $f" && cat $f && echo "::endgroup::" ; done; fi
247247
248248
build_test:
249-
name: "Build and unit testing"
249+
name: "Remote: Build and unit testing"
250250
runs-on: ubuntu-latest
251251
needs: [smoke-tests]
252252
strategy:
@@ -399,13 +399,13 @@ jobs:
399399
if compgen -G './logs-${{ matrix.mapdl-version }}/*.out' > /dev/null ;then for f in ./logs-${{ matrix.mapdl-version }}/*.out; do echo "::group:: Output file $f" && cat $f && echo "::endgroup::" ; done; fi
400400
401401
build_test_ubuntu:
402-
name: "Local unit testing on ubuntu"
402+
name: "Local: Build and unit testing on Ubuntu"
403403
runs-on: ubuntu-latest
404404
needs: [smoke-tests]
405405
timeout-minutes: 35
406406
container:
407407
image: ghcr.io/pyansys/mapdl:v22.2-ubuntu
408-
options: "--entrypoint /bin/bash"
408+
options: "-u=0:0 --entrypoint /bin/bash"
409409
credentials:
410410
username: ${{ secrets.GH_USERNAME }}
411411
password: ${{ secrets.GITHUB_TOKEN }}
@@ -466,7 +466,7 @@ jobs:
466466
root_dir: ${{ github.workspace }}
467467

468468
test_windows:
469-
name: "Unit testing on windows"
469+
name: "Local: Build and unit testing on Windows"
470470
runs-on: [self-hosted, Windows, pymapdl]
471471
timeout-minutes: 30
472472

0 commit comments

Comments
 (0)