mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-23 02:41:58 -05:00
Merge pull request #14063 from janisozaur/ccache
Use ccache on macos CI jobs
This commit is contained in:
commit
46356ba646
2 changed files with 5 additions and 0 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -155,6 +155,10 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
- name: ccache
|
||||
uses: hendrikmuhs/ccache-action@v1
|
||||
with:
|
||||
key: macos
|
||||
- name: Build OpenRCT2
|
||||
run: |
|
||||
brew install ninja
|
||||
|
|
|
@ -52,6 +52,7 @@ realpath() {
|
|||
}
|
||||
scriptsdir="$(realpath "$(dirname "${BASH_SOURCE[0]}")")"
|
||||
export PATH="$scriptsdir:$PATH"
|
||||
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
|
||||
|
||||
# Output all the variables
|
||||
if [[ "$1" != "-q" ]]; then
|
||||
|
|
Loading…
Reference in a new issue