https://github.com/dena/unity-meta-check-bins
Pre-built binaries of unity-meta-check for Windows/Linux/macOS
https://github.com/dena/unity-meta-check-bins
ci prebuilt-binaries testing tool unity
Last synced: 6 months ago
JSON representation
Pre-built binaries of unity-meta-check for Windows/Linux/macOS
- Host: GitHub
- URL: https://github.com/dena/unity-meta-check-bins
- Owner: DeNA
- License: mit
- Created: 2021-02-15T12:02:08.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-25T00:59:10.000Z (over 1 year ago)
- Last Synced: 2024-04-25T16:12:33.280Z (over 1 year ago)
- Topics: ci, prebuilt-binaries, testing, tool, unity
- Language: Shell
- Homepage: https://github.com/DeNA/unity-meta-check
- Size: 270 MB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Prebuilt binaries of unity-meta-check toolchains
===================================Repository contains prebuilt executables of [unity-meta-check](https://github.com/DeNA/unity-meta-check) tool chain. This repo is useful to ensure to use the same unity-meta-check version on CI or manual execution.
Installation
------------Only need to do is adding this repository as a submodule of your repository.
See available version on [releases](https://github.com/DeNA/unity-meta-check-bins/releases).```console
$ # Add submodule into your repository.
$ git submodule add git@github.com:DeNA/unity-meta-check-bins path/to/dir$ # Checkout the version you want (skip this step if you want to use the latest):
$ #
$ # pushd path/to/dir
$ # git checkout
$ # popd$ # Commit the changes.
$ git commit -m "Install unity-meta-check"
```Basic Usage
-----------`unity-meta-check-easy` is useful to do manual execution. `unity-meta-check-easy` is a cross-OS wrapper, it print human-readable output to console. See `unity-meta-check-easy -help` for more information.
```console
$ ./path/to/dir/unity-meta-check-easy -help
```Advanced Usage
--------------### Install to Custom Location
`unity-meta-check-install` is useful to locate binaries to the location that typically listed on `PATH`.
```console
$ git clone git@github.com:DeNA/unity-meta-check-bins
$ cd ./unity-meta-check-bins
$ git checkout
$ ./unity-meta-check-install "$HOME/bin"
path/to/unity-meta-check-bins/darwin-amd64/unity-meta-check-github-pr-comment -> $HOME/bin/unity-meta-check-github-pr-comment
path/to/unity-meta-check-bins/darwin-amd64/unity-meta-autofix -> $HOME/bin/unity-meta-autofix
path/to/unity-meta-check-bins/darwin-amd64/unity-meta-check-junit -> $HOME/bin/unity-meta-check-junit
path/to/unity-meta-check-bins/darwin-amd64/unity-meta-check -> $HOME/bin/unity-meta-check
```