FEX/Scripts/update_instcountci.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
273 B
Bash
Raw Normal View History

#! /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"