diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-07-08 13:15:01 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-07-08 13:15:01 -0400 |
commit | eff1c0b55c075eca88690b3547f58eb57c789b85 (patch) | |
tree | 6ecf5d753dc3368d9247fb044cd76a894a41ecfd /.github | |
parent | 0d4e5b6bf8804806260c8295456410bca63c8874 (diff) |
SL-18837: Set APR_LOG within build step, not at job level.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 729b0c54e5..c0bc5f30e1 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,7 +24,6 @@ jobs: - runner: macos-12-xl runs-on: ${{ matrix.runner }} env: - APR_LOG: "${{ runner.temp }}/apr.log" AUTOBUILD_ADDRSIZE: ${{ matrix.addrsize }} AUTOBUILD_BUILD_ID: ${{ github.run_id }} # authorizes fetching private constituent packages @@ -160,6 +159,7 @@ jobs: } export -f native_path shell_path finalize initialize_build initialize_version export -f python_cmd repo_branch record_dependencies_graph sleep + export APR_LOG="${RUNNER_TEMP}/apr.log" export arch=$(uname | cut -b-6) # Surprise! GH Windows runner's MINGW6 is a $arch value we've never # seen before, so numerous tests don't know about it. |