Skip to content
Snippets Groups Projects
Commit aa906a9b authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

SL-18837: Try setting PY_PYTHON and PYLAUNCHER_DEBUG

which should only affect Windows unit tests, but should hopefully improve our
chances that Windows unit tests will succeed.
parent 996ea03d
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -19,19 +19,24 @@ jobs: ...@@ -19,19 +19,24 @@ jobs:
addrsize: 32 addrsize: 32
runs-on: ${{ matrix.runner }} runs-on: ${{ matrix.runner }}
env: env:
AUTOBUILD_CONFIGURATION: ${{ matrix.configuration }}
AUTOBUILD_ADDRSIZE: ${{ matrix.addrsize }} AUTOBUILD_ADDRSIZE: ${{ matrix.addrsize }}
AUTOBUILD_CONFIGURATION: ${{ matrix.configuration }}
# authorizes fetching private constituent packages # authorizes fetching private constituent packages
AUTOBUILD_GITHUB_TOKEN: ${{ secrets.SHARED_AUTOBUILD_GITHUB_TOKEN }} AUTOBUILD_GITHUB_TOKEN: ${{ secrets.SHARED_AUTOBUILD_GITHUB_TOKEN }}
AUTOBUILD_INSTALLABLE_CACHE: ${{ github.workspace }}/.autobuild-installables AUTOBUILD_INSTALLABLE_CACHE: ${{ github.workspace }}/.autobuild-installables
AUTOBUILD_VARIABLES_FILE: ${{ github.workspace }}/.build-variables/variables AUTOBUILD_VARIABLES_FILE: ${{ github.workspace }}/.build-variables/variables
AUTOBUILD_VSVER: "170" AUTOBUILD_VSVER: "170"
# Ensure that viewer builds engage Bugsplat.
BUGSPLAT_DB: "SecondLife_Viewer_2018"
# Setting this variable directs Linden's TUT test driver code to capture # Setting this variable directs Linden's TUT test driver code to capture
# test-program log output at the specified level, but to display it only if # test-program log output at the specified level, but to display it only if
# the individual test fails. # the individual test fails.
LOGFAIL: DEBUG LOGFAIL: DEBUG
# Ensure that viewer builds engage Bugsplat. # Force py.exe to select python3 rather than plain python (2)
BUGSPLAT_DB: "SecondLife_Viewer_2018" PY_PYTHON: 3
# but if unit tests fail to import llsd (i.e. wrong Python interpreter),
# make py.exe enumerate the possibilities and explain its choice
PYLAUNCHER_DEBUG: 1
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v3 uses: actions/checkout@v3
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment