Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip dotnet format on Windows #2527

Merged
merged 1 commit into from
Dec 9, 2024
Merged
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
41 changes: 23 additions & 18 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,25 +45,28 @@ jobs:
- name: Format
run: ./build.bat format

# Skipping due to this failing consistently - See https://github.com/elastic/apm-agent-dotnet/issues/2524
# TODO - Re-enable when possible.
#required step
tests:
runs-on: windows-2022
needs: [ 'format' ]
timeout-minutes: 30
# tests:
# runs-on: windows-2022
# needs: [ 'format' ]
# timeout-minutes: 30

steps:
- uses: actions/checkout@v4
- name: Bootstrap Action Workspace
uses: ./.github/workflows/bootstrap
with:
tc-cloud: ${{ secrets.TC_CLOUD_TOKEN }}

- name: 'Tests: Unit'
run: ./build.bat test --test-suite unit
# steps:
# - uses: actions/checkout@v4
# - name: Bootstrap Action Workspace
# uses: ./.github/workflows/bootstrap
# with:
# tc-cloud: ${{ secrets.TC_CLOUD_TOKEN }}

# - name: 'Tests: Unit'
# run: ./build.bat test --test-suite unit

integrations-tests:
runs-on: windows-2022
needs: [ 'format', 'tests' ]
#needs: [ 'format', 'tests' ]
needs: [ 'tests' ]
steps:
- uses: actions/checkout@v4
- name: Bootstrap Action Workspace
Expand All @@ -84,7 +87,8 @@ jobs:

startup-hook-tests:
runs-on: windows-2022
needs: [ 'format', 'tests' ]
#needs: [ 'format', 'tests' ]
needs: [ 'tests' ]
steps:
- uses: actions/checkout@v4
- name: Bootstrap Action Workspace
Expand All @@ -95,7 +99,8 @@ jobs:

profiler-tests:
runs-on: windows-2022
needs: [ 'format', 'tests' ]
#needs: [ 'format', 'tests' ]
needs: [ 'tests' ]
steps:
- uses: actions/checkout@v4
- name: Bootstrap Action Workspace
Expand All @@ -109,8 +114,8 @@ jobs:

test-iis:
runs-on: windows-latest
needs: [ 'format', 'tests' ]

#needs: [ 'format', 'tests' ]
needs: [ 'tests' ]
steps:
- uses: actions/checkout@v4
- name: Bootstrap Action Workspace
Expand Down
Loading