Skip to content

Commit dc1622f

Browse files
committed
ci: proper runner usage
1 parent 3b1e993 commit dc1622f

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.github/workflows/ci_cd.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,10 @@ jobs:
109109
testing-windows:
110110
name: Testing and coverage (Windows)
111111
needs: [smoke-tests]
112-
runs-on: [self-hosted, Windows, pygeometry]
112+
# runs-on: [self-hosted, Windows, pygeometry]
113+
runs-on: # TODO: Waiting for ansys-network runner to be updated
114+
group: pyansys-self-hosted
115+
labels: [self-hosted, Windows, pygeometry]
113116
continue-on-error: ${{ matrix.experimental }}
114117
env:
115118
SKIP_UNSTABLE: ${{ vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY == 1 && matrix.experimental }}
@@ -549,7 +552,10 @@ jobs:
549552
550553
build-windows-container:
551554
name: Building Geometry Service - Windows
552-
runs-on: [self-hosted, Windows, pygeometry]
555+
# runs-on: [self-hosted, Windows, pygeometry]
556+
runs-on: # TODO: Waiting for ansys-network runner to be updated
557+
group: pyansys-self-hosted
558+
labels: [self-hosted, Windows, pygeometry]
553559
needs: [fetch-release-artifacts]
554560
strategy:
555561
fail-fast: false

.github/workflows/nightly_docker_test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,10 @@ jobs:
147147
windows-core-tests:
148148
name: Nightly unstable testing - Windows Core Service
149149
if: vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY != 1
150-
runs-on: [self-hosted, Windows, pygeometry]
150+
# runs-on: [self-hosted, Windows, pygeometry]
151+
runs-on: # TODO: Waiting for ansys-network runner to be updated
152+
group: pyansys-self-hosted
153+
labels: [self-hosted, Windows, pygeometry]
151154
env:
152155
PYVISTA_OFF_SCREEN: true
153156
steps:

docker/build_docker_windows.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,9 @@
153153
env_var,
154154
)
155155
else:
156-
print("XXXXXXX No AWP_ROOT environment variable found in Dockerfile.. exiting process. XXXXXXX")
156+
print(
157+
"XXXXXXX No AWP_ROOT environment variable found in Dockerfile.. exiting process. XXXXXXX" # noqa: E501
158+
)
157159
exit(0)
158160

159161
# Check if Docker is installed on the system

0 commit comments

Comments
 (0)