Skip to content
View ababushk's full-sized avatar

Block or report ababushk

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. A function to cancel previous builds...
    1
    def cancelBuilds(int builds_to_scan=300) {
    2
        def jobName = env.JOB_NAME
    3
        def currentMR = env.gitlabMergeRequestIid?.toInteger()
    4
        def currentRepoUrl = env.gitlabSourceRepoURL
    5
        def currentBuildNumber = env.BUILD_NUMBER?.toInteger()
  2. dotfiles Public

    various dotfiles

    Lua

  3. Get commit hash without checkout ste...
    1
    def commitHashForBuild(build) {
    2
        def scmAction = build?.actions.find { action -> action instanceof jenkins.scm.api.SCMRevisionAction }
    3
        if (scmAction?.revision instanceof org.jenkinsci.plugins.github_branch_source.PullRequestSCMRevision) {
    4
            return scmAction?.revision?.pullHash
    5
        } else if (scmAction?.revision instanceof jenkins.plugins.git.AbstractGitSCMSource$SCMRevisionImpl) {
  4. jenkinsci/gitlab-plugin Public

    A Jenkins plugin for interfacing with GitLab

    Java 1.4k 620

  5. openvinotoolkit/openvino Public

    OpenVINO™ is an open source toolkit for optimizing and deploying AI inference

    C++ 8k 2.5k