You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parent project has some automated tests that run as compiled C code. This fork is intended to help explore and test ways to run the automated tests automatically as part of the git commit process.
The text was updated successfully, but these errors were encountered:
The linux code is built and run thanks to f12f6f1 and 19fa84b
The test is simple: run make using the project's current and unmodified linux makefile, and then run the demo program that's been created without any parameters which performs some basic sanity checks.
The GitHub Actions are run automatically by GitHub. I've also run them on my local development macbook using the ACT project, installed with homebrew:
Managed to also get the XCode project to build thanks to d0e3dac and 302667d
The tests write to STDOUT which isn't provided by default by the XCode build actions so there's no record of what was run or the outputs of what was run. I'll see if I can capture the outputs so we can check them.
Notes
There are currently two independent GitHub actions script, one for Linux and the other for MacOS. For the moment that's probably good enough. We might be able to create a matrix build or find another way such as creating a parent Action that calls the per-operating-system scripts.
The parent project has some automated tests that run as compiled C code. This fork is intended to help explore and test ways to run the automated tests automatically as part of the git commit process.
The text was updated successfully, but these errors were encountered: