diff options
| author | Stefan Boberg <[email protected]> | 2023-10-28 00:07:34 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-28 00:07:34 +0200 |
| commit | 083aa76e00d71b42bcd3443eebc89c5599ce7fc2 (patch) | |
| tree | dc882fa18b12422b8c3b4ad448507f6cc2656e4b | |
| parent | 0.2.30 (diff) | |
| download | zen-083aa76e00d71b42bcd3443eebc89c5599ce7fc2.tar.xz zen-083aa76e00d71b42bcd3443eebc89c5599ce7fc2.zip | |
set up arch properly when running tests (mac) (#505)
| -rw-r--r-- | CHANGELOG.md | 3 | ||||
| -rw-r--r-- | xmake.lua | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 769fd69f9..b9977fbf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ ## +- Bugfix: Build script now sets up arch properly when running tests on MacOS + +## 0.2.30 - Bugfix: Block sending error reports from sentry_sink to Sentry unless the log is actually an error log - Bugfix: Make sure we have an exclusive lock in CacheBucket::CollectGarbage when removing standalone entries from the index - Bugfix: Fixed problem with missing session/request context in cache record PUT operations @@ -223,6 +223,8 @@ task("test") local arch if is_host("windows") then arch = "x64" + elseif is_arch("arm64") then + arch = "arm64" else arch = "x86_64" end |