Hermann von Kleist
Hermann von Kleist
I dont't know whether this is related, but I also have weird crashes every few days. There's a core dump attached: [polybar.dump.gz](https://github.com/polybar/polybar/files/5196941/polybar.dump.gz) Config ```ini ;========================================================== ; ; ; ██████╗ ██████╗...
Alright, I took a look at this core dump myself with gdb. The reason for this crash is a data race between two threads interacting with the same data structure....
> > > I have now added support for mounting the workspaces automatically (#572). > > ```yaml > test_junit: > script: .industrial_ci/gitlab.sh > variables: > ROS_DISTRO: noetic > BASEDIR: ${CI_PROJECT_DIR}/.build...
> > (P.S.: I find .build as name for the base directory rather distracting since it does not refer to a single build space.) > > ".build" is meant in...
`BASEDIR: ${CI_PROJECT_DIR}/...` does not work when the target workspace is in the repository, because then the CI script tries to copy the `${CI_PROJECT_DIR}` into `${BASEDIR}/target_ws/src`, i.e. into itself. Unfortunately, artifacts...
> > > > BASEDIR: ${CI_PROJECT_DIR}/... does not work when the target workspace is in the repository > > I did not consider this in the first place.. > Please...
I don't know if you read this in [the other issue](https://github.com/ros-industrial/industrial_ci/pull/595#issuecomment-779171664): Setting `BASEDIR` currently only works for `ISOLATION=docker`, unfortunately not for `ISOLATION=shell`. It's the same issue: The CI script tries...
Are there plans on configuring Git to use the CI token automatically for the GitLab CI? (By providing a credential helper echoing the CI_JOB_TOKEN environment variable)
> > > > Are there plans on configuring Git to use the CI token automatically for the GitLab CI? > > You mean this? > > ```yaml > AFTER_INIT:...
> > > > I rather thought of something where the credentials are not stored on disk. > > `CI_JOB_TOKEN` is only valid during the build.. Is that so? the...