Пример #1
0
 public bool Equals(Sha1 other)
 {
     return(_p1 == other._p1 && _p2 == other._p2 && _p3 == other._p3);
 }
Пример #2
0
 public bool Equals(Sha1 other)
 {
     return _p1 == other._p1 && _p2 == other._p2 && _p3 == other._p3;
 }
Пример #3
0
 public IEnumerable<Build> GetBuilds(MergeRequest mergeRequest, Sha1 sha)
 {
     return gitLabWrapper.GetBuilds(mergeRequest, sha);
 }
Пример #4
0
 public IEnumerable<Build> GetBuilds(MergeRequest mergeRequest, Sha1 sha)
 {
     var projectClient = client.GetRepository(mergeRequest.SourceProjectId);
     return projectClient.Builds.GetBuildsForCommit(sha);
 }
Пример #5
0
 public bool Equals(Sha1 other)
 {
     return(p1 == other.p1 && p2 == other.p2 && p3 == other.p3);
 }