forked from qnblackcat/uYouPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Caching brew dependencies (qnblackcat#1327)
- Loading branch information
1 parent
14a7123
commit 300b5f8
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,15 @@ jobs: | |
path: main | ||
submodules: recursive | ||
|
||
- name: Caching brew dependencies | ||
id: brew_cache | ||
uses: tecolicom/[email protected] | ||
with: | ||
tools: ldid dpkg make | ||
cache: yes | ||
|
||
- name: Install Dependencies | ||
if: steps.brew_cache.outputs.cache-hit != 'true' | ||
run: brew install ldid dpkg make | ||
|
||
- name: Set PATH environment variable | ||
|
@@ -69,7 +77,7 @@ jobs: | |
path: theos | ||
submodules: recursive | ||
|
||
- name: Caching | ||
- name: Caching SDK | ||
id: SDK | ||
uses: actions/[email protected] | ||
env: | ||
|