Skip to content

Commit

Permalink
fix: attempt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
RobPasMue committed Dec 18, 2024
1 parent 86c205c commit 89ff059
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightly_docker_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
windows-dms-tests:
name: Windows DMS
needs: manifests
if: ${{ vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY != 1 || needs.manifests.outputs.skip_dms == '0' }}
if: ${{ vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY != 1 || needs.manifests.outputs.skip_dms == 0 }}
runs-on: [self-hosted, Windows, pygeometry]
env:
PYVISTA_OFF_SCREEN: true
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
windows-core-tests:
name: Windows Core Service
needs: manifests
if: ${{ vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY != 1 || needs.manifests.outputs.skip_core_windows == '0' }}
if: ${{ vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY != 1 || needs.manifests.outputs.skip_core_windows == 0 }}
# runs-on: [self-hosted, Windows, pygeometry]
runs-on: # TODO: Waiting for ansys-network runner to be updated
group: pyansys-self-hosted
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
linux-tests:
name: Linux Core Service
needs: manifests
if: ${{ vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY != 1 || needs.manifests.outputs.skip_core_linux == '0' }}
if: ${{ vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY != 1 || needs.manifests.outputs.skip_core_linux == 0 }}
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 89ff059

Please sign in to comment.