-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing secrets from CICD: Part I Docs and local #2583
Conversation
Thanks for opening a Pull Request. If you want to perform a review write a comment saying: @ansys-reviewer-bot review |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #2583 +/- ##
==========================================
- Coverage 83.97% 82.10% -1.88%
==========================================
Files 46 46
Lines 9067 9090 +23
==========================================
- Hits 7614 7463 -151
- Misses 1453 1627 +174 |
It seems that the same entrypoint as the centos images ( docker run \
--name mapdl \
--restart always \
--health-cmd="ps aux | grep \"[/]ansys_inc/.*ansys\.e.*grpc\" -q && echo 0 || echo 1" \
--health-interval=0.5s \
--health-retries=4 \
--health-timeout=0.5s \
--health-start-period=10s \
-e ANSYSLMD_LICENSE_FILE=1055@$LICENSE_SERVER \
-e ANSYS_LOCK="OFF" \
-p $PYMAPDL_PORT:50052 \
-p $PYMAPDL_DB_PORT:50055 \
--shm-size=1gb \
-e I_MPI_SHM_LMT=shm \
-e P_SCHEMA=/ansys_inc/ansys/ac4/schema \
--oom-kill-disable \
--memory=6656MB \
--memory-swap=16896MB \
$MAPDL_IMAGE \
-$DISTRIBUTED_MODE -np 2 > log.txt & Gives the following error:
However it seems to work if I remove most of the stuff: docker run \
--name mapdl \
--restart always \
-e ANSYS_LOCK="OFF" \
-p $PYMAPDL_PORT:50052 \
-p $PYMAPDL_DB_PORT:50055 \
--shm-size=2gb \
-e P_SCHEMA=/ansys_inc/v241/ansys/ac4/schema \
$MAPDL_IMAGE > log.txt &
# grep -q 'Server listening on' <(timeout 60 tail -f log.txt) |
I had to disable the following tests: test_license_type_keywordBecause the licenses we were pinging are not the student license. test_license_type_keyword_namesBecause it was taking too long (timeout) I have also seen:
Probably because several instances running.... I wonder if this is going to be an issue in the |
@pyansys-ci-bot LGTM |
@pyansys-ci-bot LGTM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First iteration