circleci

2021-09-21T09:27:29.004100Z

Is CIRCLE_ARTIFACTS still an existing variable? It is referenced in historic posts, but seems no longer available

2021-09-27T08:54:01.005100Z

In our test-suite we store screenshots of failures in ./tmp unless CIRCLE_ARTIFACTS was set (use that instead). We changed this to switch based on CI. But it seems odd that the env variable just disappeared on us 😞

Marc O'Morain 2021-09-27T16:06:57.006300Z

CIRCLE_ARTIFACTS was only set in CircleCI 1.0, which was sunset in 2018/2019

🤯 1
2021-09-27T16:41:35.006600Z

The project is from before that time; IIRC this was right around the 1.0 -> 2.0 migration indeed. Thanks for getting back 🙂.

gordon 2021-09-21T09:46:05.004200Z

Can you explain your use case a bit? Saving artifacts can be done with the https://circleci.com/docs/2.0/configuration-reference/#storeartifacts command which you can point at any directory.

2021-10-01T12:32:49.006900Z

Thanks, for you answer 🙂