diff options
author | nat-goodspeed <nat@lindenlab.com> | 2023-07-17 21:56:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-17 21:56:19 +0300 |
commit | f60bf987392af04daa8527ed099f31727c629d06 (patch) | |
tree | e75c474ded03bf8d21c038fc9883cf18adee065d /.github/workflows | |
parent | 6f1e7d58e32bc281c981fb0229c84a2cbf6eece2 (diff) | |
parent | d501c24367a0ea189f3786e119aa03565aecd39e (diff) |
Merge pull request #242 from secondlife/brad/actions
SL-18837 set build id based on github workflow run id
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d0f1b59ae6..3e0330d77b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,24 +13,21 @@ jobs: matrix: runner: [windows-large, macos-12-xl] configuration: [Release] - addrsize: [64] python-version: ["3.11"] include: - - runner: windows-large - configuration: Release - addrsize: 32 - python-version: "3.11" - runner: macos-12-xl developer_dir: "/Applications/Xcode_14.0.1.app/Contents/Developer" + python-version: "3.11" runs-on: ${{ matrix.runner }} env: - AUTOBUILD_ADDRSIZE: ${{ matrix.addrsize }} + AUTOBUILD_ADDRSIZE: 64 AUTOBUILD_CONFIGURATION: ${{ matrix.configuration }} # authorizes fetching private constituent packages AUTOBUILD_GITHUB_TOKEN: ${{ secrets.SHARED_AUTOBUILD_GITHUB_TOKEN }} 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" @@ -92,8 +89,8 @@ jobs: echo "Python location: $PYTHON" fi - autobuild configure -- -DVIEWER_CHANNEL="Second Life Test ${GIT_REF##*/}" - autobuild build --no-configure + autobuild configure --id "${{ github.run_id }}" -- -DVIEWER_CHANNEL="Second Life Test ${GIT_REF##*/}" + autobuild build --no-configure # Find artifacts if [[ "$RUNNER_OS" == "Windows" ]]; then |