mirror of
https://github.com/FEX-Emu/FEX.git
synced 2024-11-27 00:30:40 +00:00
b0a09b31bb
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>
15 lines
273 B
Bash
Executable File
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"
|