diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-06-30 10:51:03 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-06-30 10:51:03 -0400 |
commit | 5f1de35f39aa3a13f6dbb98b117bb6897c792910 (patch) | |
tree | 5f05e1200cc4a6314ca354905adfa623493fdde3 /.github | |
parent | 153f5cdb9f060806472d76c7b57837cdbdf21b68 (diff) |
SL-18837: Unset AUTOBUILD_CONFIGURATION.
We suspect that autobuild incorrectly prioritizes AUTOBUILD_CONFIGURATION over
its command-line -c switch. The autobuild command to build the TPV package for
llphysicsextensions specifies -c Tpv (the configuration in the specified
config file), but with AUTOBUILD_CONFIGURATION=Release set, autobuild fails:
"ERROR: no configuration for build configuration 'Release' found"
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yaml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f5ed5ce2ae..a3d5269d5a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -28,7 +28,6 @@ jobs: env: AUTOBUILD_ADDRSIZE: ${{ matrix.addrsize }} AUTOBUILD_BUILD_ID: ${{ github.run_id }} - AUTOBUILD_CONFIGURATION: ${{ matrix.configuration }} # authorizes fetching private constituent packages AUTOBUILD_GITHUB_TOKEN: ${{ secrets.SHARED_AUTOBUILD_GITHUB_TOKEN }} AUTOBUILD_INSTALLABLE_CACHE: ${{ github.workspace }}/.autobuild-installables |