mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-29 20:14:01 +00:00
Disable ccache in Windows CPU CI pipeline (#19131)
### Description Disable ccache for all the jobs in in Windows CPU CI pipeline. Before disabling it, the build has a warning that: "MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance" After disabling it, the warning is gone and the build doesn't use /GL or /LTCG. Cache itself should not cause this difference. ### Motivation and Context
This commit is contained in:
parent
65893ef382
commit
5558912d7b
1 changed files with 10 additions and 10 deletions
|
|
@ -49,7 +49,7 @@ stages:
|
|||
isTraining: false
|
||||
ORT_EP_NAME: CPU
|
||||
GenerateDocumentation: false
|
||||
WITH_CACHE: true
|
||||
WITH_CACHE: false
|
||||
MachinePool: 'onnxruntime-Win-CPU-2022'
|
||||
|
||||
- job: build_x64_asan
|
||||
|
|
@ -95,7 +95,7 @@ stages:
|
|||
isTraining: false
|
||||
ORT_EP_NAME: CPU
|
||||
GenerateDocumentation: false
|
||||
WITH_CACHE: true
|
||||
WITH_CACHE: false
|
||||
MachinePool: 'onnxruntime-Win-CPU-2022'
|
||||
|
||||
- stage: x64_release_dnnl
|
||||
|
|
@ -113,7 +113,7 @@ stages:
|
|||
isTraining: false
|
||||
ORT_EP_NAME: DNNL
|
||||
GenerateDocumentation: false
|
||||
WITH_CACHE: true
|
||||
WITH_CACHE: false
|
||||
# Intel EPs require Intel CPUs
|
||||
MachinePool: 'onnxruntime-Win2022-Intel-CPU'
|
||||
|
||||
|
|
@ -133,7 +133,7 @@ stages:
|
|||
isTraining: false
|
||||
ORT_EP_NAME: XNNPACK
|
||||
GenerateDocumentation: false
|
||||
WITH_CACHE: true
|
||||
WITH_CACHE: false
|
||||
MachinePool: 'onnxruntime-Win-CPU-2022'
|
||||
|
||||
- stage: x64_release_winml
|
||||
|
|
@ -153,7 +153,7 @@ stages:
|
|||
isTraining: false
|
||||
ORT_EP_NAME: CPU
|
||||
GenerateDocumentation: false
|
||||
WITH_CACHE: true
|
||||
WITH_CACHE: false
|
||||
MachinePool: 'onnxruntime-Win-CPU-2022'
|
||||
|
||||
- stage: x86_release
|
||||
|
|
@ -172,7 +172,7 @@ stages:
|
|||
isTraining: false
|
||||
ORT_EP_NAME: CPU
|
||||
GenerateDocumentation: false
|
||||
WITH_CACHE: true
|
||||
WITH_CACHE: false
|
||||
MachinePool: 'onnxruntime-Win-CPU-2022'
|
||||
|
||||
- stage: training_x64_debug
|
||||
|
|
@ -190,7 +190,7 @@ stages:
|
|||
isTraining: true
|
||||
ORT_EP_NAME: CPU
|
||||
GenerateDocumentation: false
|
||||
WITH_CACHE: true
|
||||
WITH_CACHE: false
|
||||
MachinePool: 'onnxruntime-Win2022-CPU-training-AMD'
|
||||
|
||||
- stage: training_x64_release
|
||||
|
|
@ -208,7 +208,7 @@ stages:
|
|||
isTraining: true
|
||||
ORT_EP_NAME: CPU
|
||||
GenerateDocumentation: false
|
||||
WITH_CACHE: true
|
||||
WITH_CACHE: false
|
||||
MachinePool: 'onnxruntime-Win2022-CPU-training-AMD'
|
||||
|
||||
- stage: ort_training_apis_x64_release
|
||||
|
|
@ -227,7 +227,7 @@ stages:
|
|||
isTraining: true
|
||||
ORT_EP_NAME: CPU
|
||||
GenerateDocumentation: false
|
||||
WITH_CACHE: true
|
||||
WITH_CACHE: false
|
||||
MachinePool: 'onnxruntime-Win2022-CPU-training-AMD'
|
||||
|
||||
- stage: x64_release_azure
|
||||
|
|
@ -254,7 +254,7 @@ stages:
|
|||
isTraining: false
|
||||
ORT_EP_NAME: CPU
|
||||
GenerateDocumentation: false
|
||||
WITH_CACHE: true
|
||||
WITH_CACHE: false
|
||||
MachinePool: 'onnxruntime-Win-CPU-2022'
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue