We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f9dbde commit 23a2d83Copy full SHA for 23a2d83
.github/workflows/examples_docker.yml
@@ -60,7 +60,7 @@ jobs:
60
fail-fast: false
61
matrix:
62
python-version: ${{ fromJSON(needs.setup.outputs.python_versions) }}
63
- os: ["ubuntu-latest"]
+ os: ["ubuntu-latest", "windows-latest"]
64
65
steps:
66
- uses: actions/checkout@v4
@@ -108,7 +108,12 @@ jobs:
108
id: set-server-path
109
shell: bash
110
run: |
111
- docker pull ghcr.io/ansys-dpf/dpf-standalone:windows-26.1
+ if [ ${{ matrix.os }} == "ubuntu-latest" ]; then
112
+ export platform="linux"
113
+ else
114
+ export platform="windows"
115
+ fi
116
+ docker pull ghcr.io/ansys-dpf/dpf-standalone:$platform-26.1
117
docker container list -a
118
echo "DPF_DOCKER=dpfv2026.1.pre0" >> $GITHUB_ENV
119
0 commit comments