From 57824e10fb51800a393ede2f38f802ba01d3e978 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Fri, 5 Apr 2024 16:25:48 -0300 Subject: [PATCH] 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). --- .drone.jsonnet | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index fe5b615e5..cd73cd112 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -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,