Skip to content

Commit f56df53

Browse files
authored
refactor gh actions (#614)
* refactor gh actions * ci syntax fix * add cache; fix upload docs * add script; add build step * add caching; enable xvfb * add in xvfb * remove non utf char * add pdf section * add pdf step * allow latex failure * style fix and extra import * give documentation version * disable layer caching
1 parent 507effc commit f56df53

File tree

13 files changed

+310
-309
lines changed

13 files changed

+310
-309
lines changed

.ci/azure-pipelines.yml

Lines changed: 0 additions & 132 deletions
This file was deleted.

.ci/setup_headless_display.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.

.ci/start_mapdl.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
echo $GH_PAT | docker login -u $GH_USERNAME --password-stdin docker.pkg.github.com
3+
docker pull $MAPDL_IMAGE
4+
docker run -e ANSYSLMD_LICENSE_FILE=1055@$LICENSE_SERVER --restart always --name mapdl -p $PYMAPDL_PORT:50052 $MAPDL_IMAGE -smp > log.txt &
5+
grep -q 'Server listening on' <(timeout 60 tail -f log.txt)
6+
python -c "from ansys.mapdl.core import launch_mapdl; print(launch_mapdl())"

0 commit comments

Comments
 (0)