microsoft/onnxruntime-extensions
Publicmirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable
.pipelines/nuget.yml
33lines · modecode
| 1 | parameters: |
| 2 | - name: DoCompliance |
| 3 | displayName: Run Compliance Tasks? |
| 4 | type: boolean |
| 5 | default: true |
| 6 | |
| 7 | - name: DoEsrp |
| 8 | displayName: Run code sign tasks? Must be true if you are doing an OnnxRuntime extensions release. |
| 9 | type: boolean |
| 10 | default: true |
| 11 | |
| 12 | - name: IsReleaseBuild |
| 13 | displayName: Is this a release build? Set it to true if you are doing an OnnxRuntime extensions release. |
| 14 | type: boolean |
| 15 | default: false |
| 16 | |
| 17 | trigger: |
| 18 | branches: |
| 19 | exclude: |
| 20 | - "*" |
| 21 | |
| 22 | pr: |
| 23 | branches: |
| 24 | include: |
| 25 | - "*" |
| 26 | |
| 27 | stages: |
| 28 | - template: templates/build-package-for-nuget.yml |
| 29 | parameters: |
| 30 | DoCompliance: ${{ parameters.DoCompliance }} |
| 31 | DoEsrp: ${{ parameters.DoEsrp }} |
| 32 | IsReleaseBuild: ${{ parameters.IsReleaseBuild }} |
| 33 | OrtNugetPackageId: 'Microsoft.ML.OnnxRuntime.Extensions' |
| 34 | |