FEX/Scripts/update_instcountci.sh
Alyssa Rosenzweig b0a09b31bb Scripts: add update_instcountci.sh script
This is helpful for devs working on FEXCore, I've been using this locally but it
might make sense to stick it in tree.

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
2024-06-18 09:07:49 -04:00

15 lines
273 B
Bash
Executable File

#! /bin/bash
set -e
# Make sure we actually build
ninja
# Run tests, ignoring the retval since there will be changes.
ninja instcountci_tests || true
# Now we can update.
ninja instcountci_update_tests
# Commit the result in bulk.
git commit -sam "InstCountCI: Update"