From 19853dbdf673e98053abd3b3acec3fdf70e2b0ed Mon Sep 17 00:00:00 2001 From: Jeremie Fraeys Date: Thu, 12 Feb 2026 13:13:24 -0500 Subject: [PATCH] ci: add test workflow and ignore Instruments traces --- .forgejo/workflows/test.yml | 7 +++++++ .gitignore | 6 ++++++ 2 files changed, 13 insertions(+) create mode 100644 .forgejo/workflows/test.yml diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml new file mode 100644 index 0000000..539c560 --- /dev/null +++ b/.forgejo/workflows/test.yml @@ -0,0 +1,7 @@ +name: Test +on: [push] +jobs: + test: + runs-on: self-hosted + steps: + - run: echo "Hello from self-hosted" \ No newline at end of file diff --git a/.gitignore b/.gitignore index 749b5a1..12d76d2 100644 --- a/.gitignore +++ b/.gitignore @@ -248,6 +248,12 @@ cli/src/assets/rsync_release_*.bin # *_test.go *_test_output/ +# Instruments trace files +Launch_*.trace/ + +# Native C++ build artifacts +native/build/ + # Build artifacts bin/ cli/zig-out/