Skip to content
This repository was archived by the owner on Jun 15, 2024. It is now read-only.

Commit 7acc364

Browse files
committed
Remove calls to deprecated functions
1 parent 2a866e0 commit 7acc364

File tree

9 files changed

+4
-12
lines changed

9 files changed

+4
-12
lines changed

doc/howto.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ For details, check out the documentation in the [wiki](https://github.com/flosel
7777
LambdaCD comes with a small utility that can rebind `*out*` to pipe the clojure standard out into LambdaCD:
7878

7979
```clojure
80-
(:require [lambdacd.steps.support :refer [capture-output]])
80+
(:require [lambdacd.stepsupport.output :refer [capture-output]])
8181

8282
(defn some-step [args ctx]
8383
; create a printer that accumulates your output
@@ -95,7 +95,7 @@ If you need more control over the output, you can write directly to the [result
9595
or use the printer-utilities:
9696

9797
```clojure
98-
(:require [lambdacd.steps.support :refer [new-printer print-to-output printed-output]])
98+
(:require [lambdacd.stepsupport.output :refer [new-printer print-to-output printed-output]])
9999

100100
(defn some-step [args ctx]
101101
; create a printer that accumulates your output
@@ -265,4 +265,4 @@ For an example that adds a navigation bar, check out https://github.com/flosell/
265265

266266
Some build steps produce very specific outputs that are interesting to the user, e.g. test results, a list of artifacts
267267
and so on. The LambdaCD UI can interpret such information under the `:details`-key in a step result. For details, see
268-
the [build step documentation](https://github.com/flosell/lambdacd/wiki/Build-Steps) in the wiki
268+
the [build step documentation](https://github.com/flosell/lambdacd/wiki/Build-Steps) in the wiki

src/clj/lambdacd/steps/control_flow.clj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"Control-flow elements for a pipeline: steps that control the way their child-steps are being run."
33
(:require [lambdacd.execution.core :as execution]
44
[clojure.core.async :as async]
5-
[lambdacd.steps.support :as support]
65
[lambdacd.step-id :as step-id]
76

87
[lambdacd.util.internal.temp :as temp-util]

src/clj/lambdacd/steps/manualtrigger.clj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
(:require [clojure.core.async :as async]
1111
[clojure.tools.logging :as log]
1212
[lambdacd.event-bus :as event-bus]
13-
[lambdacd.steps.support :as support]
1413
[lambdacd.stepsupport.killable :as killable])
1514
(:import (java.util UUID)))
1615

src/clj/lambdacd/steps/shell.clj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
(ns lambdacd.steps.shell
22
"Build step to run scripts in a separate shell process. Needs `bash` to run."
3-
(:require [lambdacd.steps.support :as support]
4-
[clojure.java.io :as io]
3+
(:require [clojure.java.io :as io]
54
[clojure.string :as string]
65
[me.raynes.conch.low-level :as sh]
76
[clojure.core.async :as async]

test/clj/lambdacd/execution/internal/kill_test.clj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
get-or-timeout
1111
call-with-timeout
1212
without-dead-steps]]
13-
[lambdacd.steps.support :as step-support]
1413
[lambdacd.steps.control-flow :as control-flow]
1514
[lambdacd.util.internal.temp :as temp-util]
1615
[lambdacd.state.internal.dead-steps-marking :as dead-steps-marking]

test/clj/lambdacd/steps/control_flow_test.clj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
[lambdacd.testsupport.data :refer [some-ctx-with some-ctx]]
77
[lambdacd.steps.control-flow :refer :all]
88
[clojure.core.async :as async]
9-
[lambdacd.steps.support :as step-support]
109
[lambdacd.stepsupport.killable :as killable]
1110
[lambdacd.state.internal.pipeline-state-updater :as pipeline-state-updater]
1211
[clojure.java.io :as io]

test/clj/lambdacd/steps/git_test.clj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
[lambdacd.util.internal.bash :as bash-util]
1212
[lambdacd.testsupport.data :refer [some-ctx some-ctx-with]]
1313
[clojure.java.io :as io]
14-
[lambdacd.steps.support :as step-support]
1514
[lambdacd.testsupport.test-util :as tu]
1615
[lambdacd.util.internal.temp :as temp-util]
1716
[lambdacd.stepsupport.killable :as killable]))

test/clj/lambdacd/stepsupport/output_test.clj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
[clojure.core.async :as async]
88
[lambdacd.testsupport.noop-pipeline-state :as noop-pipeline-state]
99
[lambdacd.execution.core :as execution]
10-
[lambdacd.steps.support :as support]
1110
[lambdacd.stepsupport.killable :as killable]
1211
[lambdacd.stepsupport.chaining :as chaining]))
1312

test/clj/lambdacd/stress_test.clj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
[clojure.core.async :as async]
55
[lambdacd.steps.control-flow :refer [in-parallel]]
66
[lambdacd.util.internal.temp :as temp-utils]
7-
[lambdacd.steps.support :as support]
87
[lambdacd.util :as util]
98
[lambdacd.stepsupport.output :as output]))
109

0 commit comments

Comments
 (0)