Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 1005 Bytes

File metadata and controls

28 lines (25 loc) · 1005 Bytes

ci-data

holding test data for ldmx-sw CI

This repository should not be interacted with manually.

Updates

The "Generate PR Gold" workflow of ldmx-sw that is run on every release is what updates this repository. After generating the golden histogram and log files, it copies them into their locatins in this repository and then forcibly amends the HEAD commit. This means there is no history in this repository, which was done in order to save space and easy cloning time.

If you do need to interact with this repository manually (perhaps to run the CI tests locally or manually update the golden histograms after a failure), you should not git pull this repository. There will be confusing conflicts if you do that. Instead, just remove an old clone and run git clone again.

rm -rf ci-data && git clone https://github.com/LDMX-Software/ci-data.git

or fetch the new commit and hard reset

cd ci-data
git fetch # long time to download data
git reset --hard origin/main