Replies: 1 comment 2 replies
-
How did you try run the jabang action container image ? You'll need to do a volume mount into /ws to have it picked up. I believe github action does that automatically when used but not 100% sure. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have started to use jbang scripts inside GitLab CI.
My current setup:
eclipse-temurin:17
)JBANG_CACHE_DIR
andJBANG_REPO
(in order to share those folders between jobs by caching them)build
is running on each commit (runsjbang build
)execute
is a manually triggered job (runsjbang execute
)Complete example: https://github.com/jmini/jbang-ci-test
This is working great, but I was wondering why I can't used a docker image containing jbang (If I got it right, this would be
jbangdev/jbang-action
).The Git Repo would contain only the script and the GitLab pipeline config…
But this attempt is failing with:
I am not sure to understand why, and I was also curious about differences between GitHub action and GitLab CI in this context…
Beta Was this translation helpful? Give feedback.
All reactions