aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorNikita Kozlovskiy <nikitka@gmail.com>2023-06-13 09:07:28 +0000
committernkozlovskiy <nmk@ydb.tech>2023-06-13 12:07:28 +0300
commitc98fafc8f6303ddd9a82e2fdfef0083ee61622db (patch)
tree306d69dc67ce81b6b3847be3c4c95ab02f491d74 /.github/workflows
parent2432d57a6100fc5cde46761547140706b62a2816 (diff)
downloadydb-c98fafc8f6303ddd9a82e2fdfef0083ee61622db.tar.gz
ci: fix ccache secret variable name
ci: fix ccache secret variable name Pull Request resolved: #253
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build_and_test_ondemand.yml4
-rw-r--r--.github/workflows/build_and_test_provisioned.yml2
2 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/build_and_test_ondemand.yml b/.github/workflows/build_and_test_ondemand.yml
index 48d7921e00..57fe691bb2 100644
--- a/.github/workflows/build_and_test_ondemand.yml
+++ b/.github/workflows/build_and_test_ondemand.yml
@@ -71,8 +71,6 @@ jobs:
needs: provide-runner
with:
runner_label: ${{ needs.provide-runner.outputs.label }}
- secrets:
- rc_auth: ${{ secrets.REMOTE_CACHE_AUTH }}
main:
name: Build and test
@@ -94,7 +92,7 @@ jobs:
uses: ./.github/actions/build
with:
sanitizer: ${{ inputs.sanitizer }}
- ccache_remote_path: ${{ vars.REMOTE_CACHE_URL && format('http://{0}{1}', secrets.rc_auth, vars.REMOTE_CACHE_URL) || ''}}
+ ccache_remote_path: ${{ vars.REMOTE_CACHE_URL && format('http://{0}{1}', secrets.REMOTE_CACHE_AUTH, vars.REMOTE_CACHE_URL) || ''}}
- name: Run tests
uses: ./.github/actions/test
with:
diff --git a/.github/workflows/build_and_test_provisioned.yml b/.github/workflows/build_and_test_provisioned.yml
index 5d044d1579..4f4545fcb4 100644
--- a/.github/workflows/build_and_test_provisioned.yml
+++ b/.github/workflows/build_and_test_provisioned.yml
@@ -54,7 +54,7 @@ jobs:
if: inputs.run_build
with:
sanitizer: ${{ inputs.sanitizer }}
- ccache_remote_path: ${{ vars.REMOTE_CACHE_URL && format('http://{0}{1}', secrets.rc_auth, vars.REMOTE_CACHE_URL) || ''}}
+ ccache_remote_path: ${{ vars.REMOTE_CACHE_URL && format('http://{0}{1}', secrets.REMOTE_CACHE_AUTH, vars.REMOTE_CACHE_URL) || ''}}
- name: Run tests
uses: ./.github/actions/test
with: