forked from tokio-rs/prost
-
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.
* chore: Fix yaml indent * chore: Replace arduino/setup-protoc with taiki-e/install-action * chore: Remove unused git submodule * chore: Remove outdated disabled ci job * chore: Refactor ci job step name * chore: Replace seanmiddleditch/gha-setup-ninja with in-tree action * chore: Change ci name short --------- Co-authored-by: Lucio Franco <luciofranco14@gmail.com>
- Loading branch information
1 parent
65451cc
commit 9c877ce
Showing
3 changed files
with
42 additions
and
75 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
runs: | ||
using: "Composite" | ||
steps: | ||
- name: install ninja | ||
if: runner.os == 'macOS' | ||
run: brew install ninja | ||
shell: bash | ||
|
||
- name: install ninja | ||
if: runner.os == 'Windows' | ||
run: choco install ninja | ||
shell: bash | ||
|
||
- name: install ninja | ||
if: runner.os == 'Linux' | ||
run: sudo apt-get install ninja-build | ||
shell: bash |
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
This file was deleted.
Oops, something went wrong.