Fix CI cache (#92)

it didn't work so far because you can't use variable in the path...
This commit is contained in:
Val Lorentz
2021-08-09 20:42:36 +02:00
committed by GitHub
parent 9de76b6063
commit a43ae63beb
4 changed files with 91 additions and 38 deletions

View File

@ -96,8 +96,8 @@ def get_build_job(*, software_config, software_id, version_flavor):
"name": "Cache dependencies",
"uses": "actions/cache@v2",
"with": {
"path": script("~/.cache", f"$GITHUB_WORKSPACE/{path}"),
"key": "${{ runner.os }}-"
"path": f"~/.cache\n${{ github.workspace }}/{path}\n",
"key": "3-${{ runner.os }}-"
+ software_id
+ "-"
+ version_flavor.value,
@ -249,6 +249,14 @@ def get_build_job_anope():
"name": "Create directories",
"run": "cd ~/; mkdir -p .local/ go/",
},
{
"name": "Cache Anope",
"uses": "actions/cache@v2",
"with": {
"path": "~/.cache\n${{ github.workspace }}/anope\n",
"key": "3-${{ runner.os }}-anope-2.0.9",
},
},
{
"name": "Checkout Anope",
"uses": "actions/checkout@v2",