mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
Fix CI cache (#92)
it didn't work so far because you can't use variable in the path...
This commit is contained in:
@ -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",
|
||||
|
Reference in New Issue
Block a user