Skip to content
View ababushk's full-sized avatar
  • Dublin, Ireland
  • 09:04 (UTC +01:00)
Block or Report

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... A function to cancel previous builds from the same GitLab merge request
    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 dotfiles Public

    various dotfiles

    Lua

  3. Get commit hash without checkout ste... Get commit hash without checkout step in Jenkins Pipeline in GitHub Organization Folder
    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 jenkinsci/gitlab-plugin Public

    A Jenkins plugin for interfacing with GitLab

    Java 1.4k 612

  5. openvinotoolkit/openvino openvinotoolkit/openvino Public

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

    C++ 6.5k 2.1k