nektro
#1
project:
https://github.com/nektro/zigmod/blob/master/.circleci/config.yml
pipeline:
https://app.circleci.com/pipelines/github/nektro/zigmod
running the project with image: circleci/golang
, everything works as expected
example:
https://app.circleci.com/pipelines/github/nektro/zigmod/2/workflows/09459456-8fe8-4113-8b2c-f3117ff9b8ab/jobs/2
however, runningit with image: alpine
causes the /artifacts/
directory to not be detected, even though the build results are successfully picked up.
example:
https://app.circleci.com/pipelines/github/nektro/zigmod/7/workflows/3b7432f3-6001-48d2-8e9e-2b05a1ea0966/jobs/6
it’s also reproducible and can be tested against with other programs to create seemingly impossible images
nektro
#2
doing it right after the store_artifacts
step doesnt fix it either

yannCI
#3
Hi @nektro,
The command ls -l /artifacts/
is trying to list a folder called “artifacts” folder located right under “/”.
I suggest replacing it with ls -l artifacts/
.