diff options
author | Brad Linden <brad@lindenlab.com> | 2023-06-22 18:27:30 -0700 |
---|---|---|
committer | Brad Linden <brad@lindenlab.com> | 2023-06-23 09:53:26 -0700 |
commit | ee453bc2d9df82dabf425ad61363dacf91338a48 (patch) | |
tree | 3af493815e306f96e9972f212a8d38d1ec4254a7 /.github/workflows | |
parent | bbd077bda8118c534d58cbcdc697875147cf09b7 (diff) |
SL-18837 fixes for test failures.
VERSION_BUILD is now too big to fit in 32 bits, and cpuid doesn't do what we expect under rosetta
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 71b2a62618..00dd7ed116 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -31,6 +31,7 @@ jobs: AUTOBUILD_INSTALLABLE_CACHE: ${{ github.workspace }}/.autobuild-installables AUTOBUILD_VARIABLES_FILE: ${{ github.workspace }}/.build-variables/variables AUTOBUILD_VSVER: "170" + AUTOBUILD_BUILD_ID: ${{ github.run_id }} DEVELOPER_DIR: ${{ matrix.developer_dir }} # Ensure that viewer builds engage Bugsplat. BUGSPLAT_DB: "SecondLife_Viewer_2018" @@ -93,7 +94,7 @@ jobs: fi autobuild configure --id "${{ github.run_id }}" -- -DVIEWER_CHANNEL="Second Life Test ${GIT_REF##*/}" - autobuild build --no-configure + autobuild build --no-configure # Find artifacts if [[ "$RUNNER_OS" == "Windows" ]]; then |