-
Notifications
You must be signed in to change notification settings - Fork 528
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10213 from MinaProtocol/lk86/unreviewed-changes-f…
…or-beta2 Lk86/unreviewed changes for beta2
- Loading branch information
Showing
156 changed files
with
1,182 additions
and
1,323 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
|
||
BRANCH=$1 | ||
CURRENT=$(git branch --show-current) | ||
echo 'Testing for conflicts between the current branch `'"${CURRENT}"'` and `'"${BRANCH}"'`...' | ||
|
||
# Adapted from this stackoverflow answer: https://stackoverflow.com/a/10856937 | ||
# The git merge-tree command shows the content of a 3-way merge without | ||
# touching the index, which we can then search for conflict markers. | ||
|
||
git merge-tree `git merge-base origin/$BRANCH HEAD` HEAD origin/$BRANCH | grep -A 25 "^+<<<<<<<" | ||
|
||
RET=$? | ||
|
||
if [ $RET -eq 0 ]; then | ||
# Found a conflict | ||
echo "[ERROR] This pull request conflicts with $BRANCH, please open a new pull request against $BRANCH at this link:" | ||
echo "https://github.com/MinaProtocol/mina/compare/${BRANCH}...${BUILDKITE_BRANCH}" | ||
exit 1 | ||
else | ||
echo "No conflicts found against upstream branch ${BRANCH}" | ||
exit 0 | ||
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
let ArtifactPipelines = ../../Command/MinaArtifact.dhall | ||
let Pipeline = ../../Pipeline/Dsl.dhall | ||
|
||
in | ||
|
||
Pipeline.build ArtifactPipelines.bionic |
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,6 @@ | ||
let ArtifactPipelines = ../../Command/MinaArtifact.dhall | ||
let Pipeline = ../../Pipeline/Dsl.dhall | ||
|
||
in | ||
|
||
Pipeline.build ArtifactPipelines.bullseye |
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,6 @@ | ||
let ArtifactPipelines = ../../Command/MinaArtifact.dhall | ||
let Pipeline = ../../Pipeline/Dsl.dhall | ||
|
||
in | ||
|
||
Pipeline.build ArtifactPipelines.focal |
Oops, something went wrong.