entvex opened a new issue, #182:
URL: https://github.com/apache/pulsar-dotpulsar/issues/182
I noticed that the ci-unit.yaml file contains two sections related to
artifacts, but I don't think we are currently using them. Upon checking the git
history, I found out that RobertIndie added these sections in 2020. Do you
still use these artifacts, @RobertIndie, or can we create a pull request to
remove them?
```YAML
- name: package artifacts
if: failure()
run: |
rm -rf artifacts
mkdir artifacts
find . -type d -name "TestResults" -exec cp --parents -R {}
artifacts/ \;
zip -r artifacts.zip artifacts
- name: upload artifacts
uses: actions/upload-artifact@v3
if: failure()
with:
name: artifacts
path: artifacts.zip
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]