Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
/ druntime Public archive
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/env groovy

def clone (repo_url, git_ref = "master") {
checkout(
poll: false,
scm: [
$class: 'GitSCM',
branches: [[name: git_ref]],
extensions: [[$class: 'CleanBeforeCheckout']],
userRemoteConfigs: [[url: repo_url]]
]
)
}

node {
dir('dlang/ci') {
clone 'https://github.com/Dicebot/dlangci.git'
Copy link
Contributor

@wilzbach wilzbach Mar 1, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

~~~It might simplify things later.~~~

edit: I didn't see that you added this as TODO point in the description

}
load 'dlang/ci/pipeline.groovy'
}