This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-01-10
Channels
- # announcements (4)
- # babashka (40)
- # beginners (39)
- # calva (16)
- # cljdoc (1)
- # cljs-dev (8)
- # clojure (72)
- # clojure-europe (10)
- # clojure-losangeles (1)
- # clojure-nl (4)
- # clojure-spec (9)
- # clojure-uk (12)
- # clojurescript (16)
- # community-development (15)
- # conjure (5)
- # cursive (5)
- # datomic (26)
- # eastwood (1)
- # emacs (7)
- # events (1)
- # figwheel-main (15)
- # fulcro (27)
- # graphql (7)
- # gratitude (4)
- # introduce-yourself (1)
- # malli (4)
- # meander (4)
- # off-topic (2)
- # other-languages (13)
- # polylith (7)
- # reagent (5)
- # reitit (5)
- # shadow-cljs (27)
- # spacemacs (4)
- # sql (3)
- # tools-deps (6)
- # xtdb (13)
I have an issue, my ci-pipeline utilises polylith-cli and whenever I look for changes, the command return an empty vector.
poly ws get:changes:changed-or-affected-projects since:release skip:dev
When I run the same command locally it works. Anyone faced similar issues and solved it?
Do you get the same result both locally and on the server if you run poly diff since:release
?
This is equivalent to poly ws get:changes:changed-files since:release
and is what changed-or-affected-projects
takes as input.
@UBN9SNVB4 Is your CI pipeline pulling the full git commit set or just the latest commit? (GH Actions by default only pull a single commit level, so there's no git history)
Also, you'll probably want color-mode:none
in that command (I think someone already mentioned that in an earlier thread?).
Thanks for the replies, @U04V70XH6 it was the default git pull behaviour in github actions that was the issue. color-mode:none
is being used, accidently copied the command I tried in the terminal 🙂.