diff options
| author | Stefan Boberg <[email protected]> | 2025-11-13 12:20:43 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-11-13 12:20:43 +0100 |
| commit | b6efb4f1988c57e16b3bd258a5a713be3f743e49 (patch) | |
| tree | 8ffe1c8b81afc68d54b6ac72a301b1c68ce2505b /.github/workflows/create_release.yml | |
| parent | 5.7.9 (diff) | |
| download | zen-5.7.10-pre0.tar.xz zen-5.7.10-pre0.zip | |
sentry/asan configuration tweaks (#649)v5.7.10-pre0
* Automated more of the decisions around which options to set when using ASAN
* Also disabled Sentry by default as it's a bit annoying to have it upload crashes during development. Sentry is still automatically enabled and integrated as part of the `xmake bundle` step however so released builds will still have it.
Diffstat (limited to '.github/workflows/create_release.yml')
| -rw-r--r-- | .github/workflows/create_release.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 15fabad78..9b425f9c6 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -24,7 +24,7 @@ jobs: - name: Config run: | - xmake config -v -y -m release + xmake config -v -y -m release --zensentry=yes - name: Bundle run: | @@ -60,7 +60,7 @@ jobs: - name: Config run: | - ./scripts/ue_build_linux/ue_build.sh ./.tmp-ue-toolchain xmake config -v -y -m release + ./scripts/ue_build_linux/ue_build.sh ./.tmp-ue-toolchain xmake config -v -y -m release --zensentry=yes - name: Bundle run: | @@ -98,7 +98,7 @@ jobs: - name: Config run: | - xmake config -v -y -m release + xmake config -v -y -m release --zensentry=yes - name: Bundle run: | |