Skip to content

Commit

Permalink
Enable cache again.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Feb 27, 2024
1 parent ed7b124 commit 86c9312
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v4",
"uses": "40ants/setup-lisp@fix-recreating-of-qlfile-inside-cache",
"with": {
"asdf-system": "40ants-ci",
"cache": "false"
"cache": "true"
}
},
{
Expand Down Expand Up @@ -70,10 +70,10 @@
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v4",
"uses": "40ants/setup-lisp@fix-recreating-of-qlfile-inside-cache",
"with": {
"asdf-system": "40ants-ci",
"cache": "false"
"cache": "true"
}
},
{
Expand Down Expand Up @@ -129,11 +129,11 @@
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v4",
"uses": "40ants/setup-lisp@fix-recreating-of-qlfile-inside-cache",
"with": {
"asdf-system": "40ants-ci",
"qlfile-template": "{% ifequal quicklisp_dist \"ultralisp\" %}\ndist ultralisp http://dist.ultralisp.org\n{% endifequal %}",
"cache": "false"
"cache": "true"
}
},
{
Expand All @@ -160,10 +160,10 @@
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v4",
"uses": "40ants/setup-lisp@fix-recreating-of-qlfile-inside-cache",
"with": {
"asdf-system": "40ants-ci",
"cache": "false"
"cache": "true"
}
},
{
Expand All @@ -174,4 +174,4 @@
]
}
}
}
}
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v4",
"uses": "40ants/setup-lisp@fix-recreating-of-qlfile-inside-cache",
"with": {
"asdf-system": "40ants-ci-docs",
"cache": "false"
"cache": "true"
}
},
{
Expand All @@ -45,4 +45,4 @@
]
}
}
}
}
4 changes: 2 additions & 2 deletions src/ci.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
:on-push-to "master"
:on-pull-request t
:by-cron "0 10 * * 1"
:cache nil
:cache t
:jobs ((40ants-ci/jobs/docs:build-docs
:asdf-system "40ants-ci-docs")))

Expand All @@ -32,7 +32,7 @@
:on-push-to "master"
:by-cron "0 10 * * 1"
:on-pull-request t
:cache nil
:cache t
:jobs ((40ants-ci/jobs/linter:linter
:asdf-systems ("40ants-ci"
"40ants-ci-tests")
Expand Down

0 comments on commit 86c9312

Please sign in to comment.