-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
521d1cb
commit bcabf49
Showing
2 changed files
with
36 additions
and
3 deletions.
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 |
---|---|---|
|
@@ -81,6 +81,34 @@ jobs: | |
(github.event_name == 'push' && steps.cache-server-push.outputs.cache-hit != 'true') | ||
run: brew install argp-standalone pkgconfig geos | ||
|
||
- name: Set up homebrew | ||
if: | | ||
github.event_name == 'pull_request' | ||
|| github.event_name == 'push' | ||
|| github.event_name == 'schedule' | ||
run: | | ||
brew update | ||
brew install --overwrite argp-standalone pkg-config | ||
brew info argp-standalone | ||
- name: Set up Go | ||
if: | | ||
github.event_name == 'pull_request' | ||
|| github.event_name == 'push' | ||
|| github.event_name == 'schedule' | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.18 | ||
|
||
- name: Set up Rust | ||
if: | | ||
github.event_name == 'pull_request' | ||
|| github.event_name == 'push' | ||
|| github.event_name == 'schedule' | ||
uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
|
||
- name: install TDengine | ||
if: > | ||
(github.event_name == 'workflow_dispatch' && steps.cache-server-manually.outputs.cache-hit != 'true') || | ||
|
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