forked from VOICEVOX/voicevox_core
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cbindgenのインストール時にcargo-quickinstallのリポジトリを明示的に指定する (VOICEVOX#293)
* Explicitly specify cargo-quickinstall releases for cbindgen * Fix the version of cbindgen
- Loading branch information
Showing
4 changed files
with
28 additions
and
4 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,24 @@ | ||
inputs: | ||
version: | ||
required: true | ||
default: ^0.24 | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Install cbindgen | ||
shell: bash | ||
run: | | ||
case "$OS" in | ||
Windows) | ||
cargo install cbindgen --version ${{ inputs.version }};; | ||
macOS | Linux ) | ||
cargo binstall \ | ||
cbindgen@${{ inputs.version }} \ | ||
--pkg-url 'https://github.com/alsuren/cargo-quickinstall/releases/download/{ name }-{ version }-{ target }/{ name }-{ version }-{ target }.tar.gz' \ | ||
--pkg-fmt tgz \ | ||
--bin-dir '{ bin }{ binary-ext }' \ | ||
--no-confirm \ | ||
--log-level debug;; | ||
esac | ||
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 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 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