-
Notifications
You must be signed in to change notification settings - Fork 72
Make onnxscript release 1ES compliant #2071
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
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
d56c8d1
Make onnxscript 1 ES compliant
jchen351 b726e7a
Stages
jchen351 ec84fa0
Stages
jchen351 afd839c
Stages
jchen351 0ff9bfb
Stages
jchen351 e785710
Stages
jchen351 6d9b187
Stages
jchen351 e4bfb9d
Adding a non-stage template
jchen351 98ec4b4
Adding a non-stage template
jchen351 616cf9c
Adding a non-stage template
jchen351 dc4b1ec
Adding a non-stage template
jchen351 d4ed3ea
Adding sdl windows pool
jchen351 36262ca
is 1Es
jchen351 9ab6058
is 1Es
jchen351 3e5574d
use onnxruntime-Ubuntu2204-AMD-CPU
jchen351 a48d2c7
use onnxruntime-Ubuntu2204-AMD-CPU
jchen351 144d1d3
Fix lint
jchen351 b1d23b2
Fix lint
jchen351 f297601
Also making release-dev 1ES compliant
jchen351 f7c1dd5
Also making release-dev 1ES compliant
jchen351 8ebb219
ONNX_SCRIPT_RELEASE
jchen351 9d9d579
Apply suggestions from code review
justinchuby 47a4f2e
Update .azure-pipelines/stages/release-stage.yml
jchen351 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
steps: | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: '3.11' | ||
displayName: 'Set Up Python' | ||
- script: python -m pip install --upgrade pip build wheel | ||
displayName: 'Install Python build dependencies' | ||
- script: python -m build | ||
displayName: 'Build ONNX Script wheel' | ||
- task: CopyFiles@2 | ||
displayName: 'Copy Python Wheel to: $(Build.ArtifactStagingDirectory)' | ||
inputs: | ||
SourceFolder: 'dist' | ||
Contents: '*.*' | ||
TargetFolder: '$(Build.ArtifactStagingDirectory)' | ||
- task: 1ES.PublishPipelineArtifact@1 | ||
displayName: 'Publish Python Wheel' | ||
inputs: | ||
ArtifactName: 'onnxscript' | ||
targetPath: '$(Build.ArtifactStagingDirectory)' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
stages: | ||
|
||
- stage: Stage | ||
jobs: | ||
- job: Job | ||
steps: | ||
- template: jobs/steps/release-steps.yml | ||
# Test the wheels. This needs to happen after PublishBuildArtifacts | ||
# to avoid interference with the artifacts | ||
- script: python -m pip install dist/*.whl --no-deps | ||
displayName: 'Install wheel' | ||
condition: eq(variables['ONNX_SCRIPT_RELEASE'], 1) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.