Fire unit tests on push

It seems useful to have them run on pushes as well (so that you can push
to a local user branch and have the tests run before PRing it).
pull/960/head
Jason Rhinelander 1 year ago
parent b65ca5521c
commit 57824e10fb
No known key found for this signature in database
GPG Key ID: C4992CE7A88D4262

@ -118,13 +118,12 @@ local sim_keepalive = {
local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$USER/sim-keepalive/$(<./build/artifacts/sim_uuid); fi';
[
// Unit tests (PRs only)
// Unit tests
{
kind: 'pipeline',
type: 'exec',
name: 'Unit Tests',
platform: { os: 'darwin', arch: 'arm64' },
trigger: { event: { exclude: ['push'] } },
steps: [
version_info,
clone_submodules,

Loading…
Cancel
Save