Skip to content

Commit 4f9dbde

Browse files
committed
ci(docker): try pulling Windows DPF Docker container for 26.1
1 parent dce1f5f commit 4f9dbde

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

.github/workflows/examples_docker.yml

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,29 @@ jobs:
9797
run: |
9898
pip install dist/${{ steps.wheel.outputs.wheel_name }}[graphics]
9999
100+
- name: Login in GitHub Container registry
101+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
102+
with:
103+
registry: ghcr.io
104+
username: ${{ github.actor }}
105+
password: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
106+
100107
- name: "Install DPF"
101108
id: set-server-path
102-
uses: ansys/pydpf-actions/[email protected]
103-
with:
104-
dpf-standalone-TOKEN: ${{secrets.PYANSYS_CI_BOT_TOKEN}}
105-
standalone_suffix: ${{ inputs.standalone_suffix }}
106-
ANSYS_VERSION : ${{ inputs.ANSYS_VERSION || vars.ANSYS_VERSION_DEFAULT }}
109+
shell: bash
110+
run: |
111+
docker pull ghcr.io/ansys-dpf/dpf-standalone:windows-26.1
112+
docker container list -a
113+
echo "DPF_DOCKER=dpfv2026.1.pre0" >> $GITHUB_ENV
114+
115+
# - name: "Install DPF"
116+
# id: set-server-path
117+
# uses: ansys/pydpf-actions/[email protected]
118+
# with:
119+
# dpf-standalone-TOKEN: ${{secrets.PYANSYS_CI_BOT_TOKEN}}
120+
# standalone_suffix: ${{ inputs.standalone_suffix }}
121+
# ANSYS_VERSION : ${{ inputs.ANSYS_VERSION || vars.ANSYS_VERSION_DEFAULT }}
122+
107123

108124
- name: "Check licences of packages"
109125
uses: ansys/pydpf-actions/[email protected]

0 commit comments

Comments
 (0)