Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/breakage-against-windows-ponyc-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
name: Verify main against the latest ponyc on Windows
runs-on: windows-2025
steps:
- name: Disable Windows Defender
run: Set-MpPreference -DisableRealtimeMonitoring $true
- uses: actions/checkout@v6.0.2
- name: Test with most recent ponyc nightly
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ jobs:
name: Build and upload x86-64-pc-windows-msvc-nightly to Cloudsmith
runs-on: windows-2025
steps:
- name: Disable Windows Defender
run: Set-MpPreference -DisableRealtimeMonitoring $true
- uses: actions/checkout@v6.0.2
- name: Build and upload
run: |
Expand Down Expand Up @@ -103,6 +105,8 @@ jobs:
name: Build and upload arm64-pc-windows-msvc-nightly to Cloudsmith
runs-on: windows-11-arm
steps:
- name: Disable Windows Defender
run: Set-MpPreference -DisableRealtimeMonitoring $true
- uses: actions/checkout@v6.0.2
- name: Build and upload
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ jobs:
name: x86_64 Windows
runs-on: windows-2025
steps:
- name: Disable Windows Defender
run: Set-MpPreference -DisableRealtimeMonitoring $true
- uses: actions/checkout@v6.0.2
- name: Test with most recent ponyc release
run: |
Expand All @@ -68,6 +70,8 @@ jobs:
name: arm64 Windows
runs-on: windows-11-arm
steps:
- name: Disable Windows Defender
run: Set-MpPreference -DisableRealtimeMonitoring $true
- uses: actions/checkout@v6.0.2
- name: Test with most recent ponyc release
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ jobs:
needs:
- pre-artefact-creation
steps:
- name: Disable Windows Defender
run: Set-MpPreference -DisableRealtimeMonitoring $true
- uses: actions/checkout@v6.0.2
- name: Build and upload
run: |
Expand All @@ -138,6 +140,8 @@ jobs:
needs:
- pre-artefact-creation
steps:
- name: Disable Windows Defender
run: Set-MpPreference -DisableRealtimeMonitoring $true
- uses: actions/checkout@v6.0.2
- name: Build and upload
run: |
Expand Down
Loading