Skip to content

Commit b86ca46

Browse files
ci: skipping non-student versions when running on remote (#3690)
* ci: skipping non-student versions when running on remote * chore: adding changelog file 3690.maintenance.md [dependabot-skip] --------- Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent e6221a6 commit b86ca46

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.ci/build_matrix.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ for version in "${versions[@]}"; do
101101
fi
102102

103103
# Skipping if on remote and on student
104-
if [[ "$ON_STUDENT" == "true" && "$ON_REMOTE" == "true" ]]; then
105-
echo "Skipping student versions when running on remote"
104+
if [[ "$ON_STUDENT" != "true" && "$ON_REMOTE" == "true" ]]; then
105+
echo "Skipping non-student versions when running on remote"
106106
echo ""
107107
continue
108108
fi

doc/changelog.d/3690.maintenance.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ci: skipping non-student versions when running on remote

0 commit comments

Comments
 (0)