forked from openucx/ucx
-
Notifications
You must be signed in to change notification settings - Fork 0
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
AZP: Create release pipeline #26
Open
avildema
wants to merge
20
commits into
Mellanox:integration4
Choose a base branch
from
avildema:int4_release
base: integration4
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 9 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
d32cce0
AZP/CI: Auto-rebase on master branch
avildema c98b2c0
UCT/MLX5: disable HW TM
evgeny-leksikov ac9d2d3
UCP/TAG: add eager compatibility
evgeny-leksikov 7a34b39
UCP/TAG/SEND: added eager/rndv flags to tag_send op
ba9a5b7
GTEST/UCP/TAG: test unexp queue cleanup
evgeny-leksikov 33ffac9
UCT/IB: Non-blocking IB device close
Artemy-Mellanox 29bfad7
UCT/IB: Remove sighandlers in IB cleanup thread
Artemy-Mellanox 729030e
UCT/IB: handle IBV_EVENT_DEVICE_FATAL
evgeny-leksikov 71fb4c9
AZP: Create release pipeline
avildema a200b9a
AZP: Create release pipeline
avildema 7c4d0f6
AZP/CI: Auto-rebase on openucx/ucx v1.13.x branch
avildema ba3e65c
UCT/MLX5: disable HW TM
evgeny-leksikov e12239f
UCP/TAG: add eager compatibility
evgeny-leksikov eb1a20f
UCP/TAG/SEND: added eager/rndv flags to tag_send op
be81bbd
GTEST/UCP/TAG: test unexp queue cleanup
evgeny-leksikov a9defa1
UCT/IB: Non-blocking IB device close
Artemy-Mellanox 56a35bd
UCT/IB: Remove sighandlers in IB cleanup thread
Artemy-Mellanox b0b9a58
UCT/IB: handle IBV_EVENT_DEVICE_FATAL
evgeny-leksikov 50d9937
UCX: bump extra version to pre1
evgeny-leksikov bca85e8
Merge branch 'integration4' into int4_release
avildema 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 contains 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,47 @@ | ||
# See https://aka.ms/yaml | ||
|
||
trigger: none | ||
pr: none | ||
|
||
resources: | ||
pipelines: | ||
- pipeline: myTest | ||
source: 'UCX snapshot' | ||
trigger: true | ||
|
||
stages: | ||
- stage: Rebase | ||
jobs: | ||
- job: rebase | ||
pool: | ||
name: MLNX | ||
demands: | ||
- ucx_docker -equals yes | ||
displayName: rebase on openucx/ucx@master | ||
steps: | ||
- checkout: self | ||
clean: true | ||
fetchDepth: 200 | ||
- bash: | | ||
set -eEx | ||
source buildlib/az-helpers.sh | ||
# Checkout integration4 branch from Mellanox/ucx | ||
git remote set-url origin [email protected]:Mellanox/ucx.git | ||
git fetch origin integration4 | ||
git checkout integration4 | ||
# Checkout master branch from openucx/ucx | ||
git remote add upstream https://github.com/openucx/ucx.git | ||
git fetch upstream master | ||
git log --oneline -10 upstream/master | ||
# Rebase integration4 branch on master branch | ||
if ! git rebase upstream/master | ||
then | ||
# Automatic rebase failed - show merge conflicts | ||
git status | ||
git diff | ||
head=$(git rev-parse --short HEAD) | ||
azure_log_issue "Rebase on ${head} failed, see https://github.com/Mellanox/ucx/wiki/Manual-rebase-of-integration4-branch for details" | ||
else | ||
# Automatic rebase was successful - update the branch | ||
git push origin HEAD --force | ||
fi |
This file contains 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 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 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need to run release pipeline in case of PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it will not run, it just copy paste from release job
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd remove it then