diff options
| author | AlexSm <[email protected]> | 2024-10-24 13:34:33 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-10-24 13:34:33 +0200 |
| commit | 63c779e175edd3dbcaa0e16d027cd26432113a99 (patch) | |
| tree | 2adf95fa01f8936a1f298850d497d552379a0e5e | |
| parent | 76efe466d25d08c635f4eaa36820999321c678df (diff) | |
Fix ccache credentials for cmake build (#10833)
| -rw-r--r-- | .github/workflows/build_and_test_provisioned.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build_and_test_provisioned.yml b/.github/workflows/build_and_test_provisioned.yml index 28958c015d2..3c031eea188 100644 --- a/.github/workflows/build_and_test_provisioned.yml +++ b/.github/workflows/build_and_test_provisioned.yml @@ -56,7 +56,7 @@ jobs: if: inputs.run_build with: sanitizer: ${{ inputs.sanitizer }} - ccache_remote_path: ${{ vars.REMOTE_CACHE_URL && format('http://{0}{1}', secrets.REMOTE_CACHE_AUTH, vars.REMOTE_CACHE_URL) || ''}} + ccache_remote_path: ${{ format('http://{0}:{1}@{2}', secrets.REMOTE_CACHE_USER, secrets.REMOTE_CACHE_PASSWORD, vars.REMOTE_CACHE_URL) }} extra_compile_flags: ${{ inputs.extra_compile_flags }} ninja_target: ${{ inputs.ninja_target }} |
