Skip to content

Commit

Permalink
Revert "Disable windows tests for RC1" (#20708)
Browse files Browse the repository at this point in the history
This reverts commit 95e53df.
  • Loading branch information
WojciechMazur committed Jun 21, 2024
2 parents 6fd3950 + 3d18e98 commit 278559f
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,16 @@ jobs:

test_windows_fast:
runs-on: [self-hosted, Windows]
if: false
if: "(
github.event_name == 'push'
&& github.ref != 'refs/heads/main'
)
|| github.event_name == 'merge_group'
|| (
github.event_name == 'pull_request'
&& !contains(github.event.pull_request.body, '[skip ci]')
&& !contains(github.event.pull_request.body, '[skip test_windows_fast]')
)"

steps:
- name: Reset existing repo
Expand Down Expand Up @@ -243,7 +252,13 @@ jobs:

test_windows_full:
runs-on: [self-hosted, Windows]
if: false
if: "github.event_name == 'schedule' && github.repository == 'scala/scala3'
|| github.event_name == 'push'
|| (
github.event_name == 'pull_request'
&& !contains(github.event.pull_request.body, '[skip ci]')
&& contains(github.event.pull_request.body, '[test_windows_full]')
)"

steps:
- name: Reset existing repo
Expand Down

0 comments on commit 278559f

Please sign in to comment.