-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release][v0.9] Remove VTA submodule (#11992)
- Loading branch information
Showing
14 changed files
with
58 additions
and
146 deletions.
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
Submodule vta-hw
deleted from
36a915
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ def init_git() { | |
|
||
// Determine merge commit to use for all stages | ||
sh ( | ||
script: 'git fetch origin main', | ||
script: 'git fetch origin v0.9.0', | ||
label: 'Fetch upstream', | ||
) | ||
if (upstream_revision == null) { | ||
|
@@ -27,7 +27,7 @@ def init_git() { | |
} | ||
sh ( | ||
script: "git -c user.name=TVM-Jenkins -c [email protected] merge ${upstream_revision}", | ||
label: 'Merge to origin/main' | ||
label: 'Merge to origin/v0.9.0' | ||
) | ||
|
||
sh( | ||
|
@@ -98,8 +98,8 @@ def should_skip_slow_tests(pr_number) { | |
} | ||
|
||
def cancel_previous_build() { | ||
// cancel previous build if it is not on main. | ||
if (env.BRANCH_NAME != 'main') { | ||
// cancel previous build if it is not on v0.9.0. | ||
if (env.BRANCH_NAME != 'v0.9.0') { | ||
def buildNumber = env.BUILD_NUMBER as int | ||
// Milestone API allows us to cancel previous build | ||
// with the same milestone number | ||
|
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
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