Skip to content
Open
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
56 changes: 28 additions & 28 deletions samples/pipeline-clone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
pipeline:
clone: false
stages:
- steps:
- run:
script: go build
- steps:
- run:
script: go build

---

Expand All @@ -15,9 +15,9 @@ pipeline:
clone:
disabled: true
stages:
- steps:
- run:
script: go build
- steps:
- run:
script: go build

---

Expand All @@ -30,9 +30,9 @@ pipeline:
connector: account.github
name: harness/hello-world
stages:
- steps:
- run:
script: go build
- steps:
- run:
script: go build

---

Expand All @@ -46,9 +46,9 @@ pipeline:
connector: account.github
name: harness/hello-world
stages:
- steps:
- run:
script: go build
- steps:
- run:
script: go build

---

Expand All @@ -62,9 +62,9 @@ pipeline:
connector: account.github
name: harness/hello-world
stages:
- steps:
- run:
script: go build
- steps:
- run:
script: go build

---

Expand All @@ -80,30 +80,30 @@ pipeline:
connector: account.github
name: harness/hello-world
stages:
- steps:
- run:
script: go build
- steps:
- run:
script: go build

---

# pipeline with custom cloning per stage (short)

pipeline:
stages:
- clone: false
steps:
- run:
script: go build
- clone: false
steps:
- run:
script: go build

---

# pipeline with custom cloning per stage (long)

pipeline:
stages:
- clone:
insecure: true
trace: true
steps:
- run:
script: go build
- clone:
insecure: true
trace: true
steps:
- run:
script: go build