mirror of
https://github.com/FEX-Emu/FEX.git
synced 2024-12-13 17:15:41 +00:00
15 lines
273 B
Bash
15 lines
273 B
Bash
|
#! /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"
|