Skip to content
Closed
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
10 changes: 5 additions & 5 deletions azure-pipelines-PR.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CI and PR triggers

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build FSharpPlus_Windows Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: FSharpPlus_Windows

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build Nu_Build Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: Nu_Build

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build FsharpPlus_NET10_Test_Release Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: FsharpPlus_NET10_Test_Release

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build FsharpPlus_NET10_Test_Debug Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: FsharpPlus_NET10_Test_Debug

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build FsharpPlus_NET10_Docs Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: FsharpPlus_NET10_Docs

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build OpenTK_FSharp_Build Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: OpenTK_FSharp_Build

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build IcedTasks_Test_Debug Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: IcedTasks_Test_Debug

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build FsharpPlus_NET10_Build_Lib_Tests Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: FsharpPlus_NET10_Build_Lib_Tests

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build IcedTasks_Test_Release Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: IcedTasks_Test_Release

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build FsToolkit_ErrorHandling_Test_Debug Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: FsToolkit_ErrorHandling_Test_Debug

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build IcedTasks_Build Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: IcedTasks_Build

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build FsToolkit_ErrorHandling_Test_Release Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: FsToolkit_ErrorHandling_Test_Release

Check failure on line 1 in azure-pipelines-PR.yml

View check run for this annotation

Azure Pipelines / fsharp-ci (Build FsToolkit_ErrorHandling_Build Regression Test)

azure-pipelines-PR.yml#L1

azure-pipelines-PR.yml(,): error : Regression test failed: FsToolkit_ErrorHandling_Build
trigger:
branches:
include:
Expand Down Expand Up @@ -100,7 +100,7 @@
helixRepo: dotnet/fsharp
jobs:
# Determinism, we want to run it only in PR builds
- job: Determinism_Debug
- job: Determinism_Release
condition: eq(variables['Build.Reason'], 'PullRequest')
variables:
- name: _SignType
Expand Down Expand Up @@ -129,15 +129,15 @@
workingDirectory: $(Build.SourcesDirectory)
installationPath: $(Build.SourcesDirectory)/.dotnet
- script: .\eng\common\dotnet.cmd
- script: .\eng\test-determinism.cmd -configuration Debug
- script: .\eng\test-determinism.cmd -configuration Release
env:
FSHARP_EXPERIMENTAL_FEATURES: $(_experimental_flag)
displayName: Determinism tests with Debug configuration
displayName: Determinism tests with Release configuration
- task: PublishPipelineArtifact@1
displayName: Publish Determinism Logs
inputs:
targetPath: '$(Build.SourcesDirectory)/artifacts/log/Debug'
artifactName: 'Determinism_Debug Attempt $(System.JobAttempt) Logs'
targetPath: '$(Build.SourcesDirectory)/artifacts/log/Release'
artifactName: 'Determinism_Release Attempt $(System.JobAttempt) Logs'
continueOnError: true
condition: not(succeeded())

Expand Down
Loading