Skip to content

Commit 7602a0d

Browse files
committed
Which test
1 parent 22d2282 commit 7602a0d

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/conveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ jobs:
113113
export PATH="$PATH:${{ env.cache_path }}/install/conveyor-${{ env.conveyor_version }}/bin"
114114
bb '(System/getenv "SHELL")'
115115
bb path-test
116+
bb which-test
116117
# bb conveyor-test
117118
118119
# - name: Set the date

bb.edn

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,11 @@
6363
url "datomic:sql://?jdbc:postgresql://localhost:5432/datomic?user=datomic&password=datomic"]
6464
(shell (format "%s -p %d db %s" console port url)))}
6565

66-
path-test (let [curr-shell (System/getenv "SHELL")]
67-
(shell (str curr-shell " -c 'echo \"PATH from $0:\n$PATH\"'")))
66+
path-test (let [curr-shell (System/getenv "SHELL")]
67+
(shell (str curr-shell " -c 'echo \"PATH from $0:\n$PATH\"'")))
68+
69+
which-test (let [curr-shell (System/getenv "SHELL")]
70+
(shell (str curr-shell " -c 'echo \"Conveyor PATH: $(which conveyor)\"'")))
6871

6972
conveyor-test (let [curr-shell (System/getenv "SHELL")]
7073
(shell (str curr-shell " -c 'conveyor --version'")))}}

0 commit comments

Comments
 (0)