summaryrefslogtreecommitdiff
path: root/.github
AgeCommit message (Collapse)Author
2023-07-07SL-18837: Try putting generated Python scripts in RUNNER_TEMP dir.Nat Goodspeed
The claim is that the Windows Python interpreter is integrated somehow with the OS such that a command line that tries to run Python with a script that "looks suspicious" (i.e. in a system temp directory) fails with "Access denied" without even loading the interpreter. At least that theory would explain the "Access denied" errors we've been getting trying to run Python scripts generated into the system temp directory by our integration tests. Our hope is that generating such scripts into the GitHub RUNNER_TEMP directory will work better. As this test is specific to Windows, don't even bother running Mac builds.
2023-07-07SL-18837: Use multi-line GitHub outputs to upload artifacts.Nat Goodspeed
Having observed installer upload failures, I discovered the warning in actions/upload-artifact/README.md about multiple concurrent jobs trying to post the same pathname to the same artifact name. Try to disambiguate artifacts not only for different platforms, but for different jobs running on the same platform. This change also reflects my understanding that an artifact is (effectively) a distinct zip file that can contain multiple uploaded files. Because we'll want to download metadata without having to download enormous installers, create a separate metadata artifact per platform. Similarly, symbol files can get large: use a third distinct artifact for symbol files. But with those artifacts defined, leverage actions/upload-artifact's ability to upload multiple paths to the same artifact. In build.sh, define bash arrays installer, metadata, symbolfile and set up so that, on exit, each is written to a GITHUB_OUTPUT variable with the corresponding name. This involves a little magic to get macOS bash 3 to indirectly access an array. These multi-line output variables are then used to drive the upload-artifact step for each of the defined artifacts.
2023-07-06SL-18837: Ding Dong, 32-bit is dead!Nat Goodspeed
2023-07-06SL-18837: Add addoutput, addarrayoutput functions to build.shNat Goodspeed
and use them instead of codeticket addoutput to pass GitHub xxx_name, xxx_path outputs to build.yaml. Add upload steps to build.yaml to try to upload build products identified in build.sh.
2023-06-30SL-18837: Unset AUTOBUILD_CONFIGURATION.Nat Goodspeed
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"
2023-06-30SL-18837: Revert "Install autobuild from source repo, not PyPI."Nat Goodspeed
That doesn't seem to be the distinction between TC builds and GH builds. Instead, we'll try unsetting AUTOBUILD_CONFIGURATION. This reverts commit d62e7039dafe4a49d548225203785eeda0eeb44a.
2023-06-29SL-18837: Install autobuild from source repo, not PyPI.Nat Goodspeed
Bug in autobuild 3.9.2? The TC viewer build can successfully build llphysicsextensions/autobuild-tpv.xml, but the previous GH actions build failed: "no configuration for Release found" despite -c Tpv. The difference seems to be that we used 'pip3 install autobuild' from PyPI, whereas the TC buildscripts setup clones secondlife/autobuild branch v3 and installs from that repo.
2023-06-29SL-18837: Temporarily suppress Windows builds; add finalize functionNat Goodspeed
Also pretend novel arch value MINGW6 is really CYGWIN so we'll recognize it.
2023-06-28SL-18837: Don't try to engage git-hooks explicitly at all.Nat Goodspeed
2023-06-28SL-18837: Get buildscripts_support_functions from sling-buildscriptsNat Goodspeed
and use these variants for GitHub builds.
2023-06-28SL-18837: Don't fetch (unmigrated) build-secrets, use GH secrets.Nat Goodspeed
2023-06-28SL-18837: Include actions-build-sh branch in build trigger pushes.Nat Goodspeed
2023-06-27SL-18837: Try doing necessary setup to run viewer's own build.sh.Nat Goodspeed
2023-06-07SL-18837 fix win32 build warning about missing python-version settingBrad Linden
2023-06-07Attempt to port some build.yaml improvements from DRTVWR-559 over to actions ↵Brad Linden
branch
2023-06-07SL-18837: Try to install llsd in the Python used by py.exeNat Goodspeed
2023-06-07SL-18837: Tell py.exe to use Python 3.9 instead of 3.11Nat Goodspeed
2023-06-07SL-18837: Quote integers used for environment variablesNat Goodspeed
2023-06-07SL-18837: Try setting PY_PYTHON and PYLAUNCHER_DEBUGNat Goodspeed
which should only affect Windows unit tests, but should hopefully improve our chances that Windows unit tests will succeed.
2023-06-05SL-18837: pip install llsd as well as autobuild.Nat Goodspeed
The Python child processes used by llprocess_test.cpp and llleap_test.cpp need the Python llsd module to communicate with the C++ parent process. Also set LOGFAIL and BUGSPLAT_DB environment variables.
2023-05-19DRTVWR-558: Merge branch 'main' of secondlife/viewer into actionsNat Goodspeed
2023-05-15SL-18837: AUTOBUILD_GITHUB_TOKEN to authenticate private packages.Nat Goodspeed
2023-03-24SL-18837: Try building Release viewer config on GH.Nat Goodspeed
2022-11-21Merge pull request #4 from secondlife/signal/staleSignal Linden
Close stale PRs
2022-11-18Merge pull request #3 from secondlife/signal/labelSignal Linden
Add automatic PR labels
2022-11-18Mark PRs as stale after 60 days, close them automatically if no responseBennett Goble
after 7 days.
2022-11-18Add automatic PR labelsBennett Goble
2022-11-18Add CLA botBennett Goble
2022-10-12Upload macos installerSignal Linden
2022-10-12Build on 64-core machineSignal Linden
2022-10-12Add macOS build backSignal Linden
2022-10-12Build on 8-core machineSignal Linden
2022-10-12Build on 16-core machineSignal Linden
2022-10-12Run build with default runnerSignal Linden
2022-10-12Fix YAML syntaxSignal Linden
2022-10-12Run on windows-2022-largeSignal Linden
2022-10-12Upload installer, build Release, use large runnerSignal Linden
2022-10-11Replace llbase with llsd moduleSignal Linden
2022-10-11Omit macOS until I have a mac laptopSignal Linden
2022-10-10Remove cygwin artifactsSignal Linden
2022-10-10Call load_vsvarsSignal Linden
2022-10-10Use cygwinSignal Linden
2022-10-10Explicitly set AUTOBUILD_VSVERSignal Linden
2022-10-10Perform source_environmentSignal Linden
2022-10-10Also build win32 with VS2k22Signal Linden
2022-10-10Build with VS2k22Signal Linden
2022-10-10Use pre-installed pythonSignal Linden
2022-10-10Allow CMAKE to run autobuild installSignal Linden
2022-10-10Force RelWithDebInfoOS configurationSignal Linden
2022-10-10Separate autobuild install from buildSignal Linden