-
Notifications
You must be signed in to change notification settings - Fork 6
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
wyhaya
committed
May 9, 2022
0 parents
commit df8c4ad
Showing
35 changed files
with
1,643 additions
and
0 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,116 @@ | ||
name: Build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
name: ${{ matrix.job.target }} | ||
runs-on: ${{ matrix.job.os }} | ||
strategy: | ||
matrix: | ||
job: | ||
- target: x86_64-unknown-linux-gnu | ||
os: ubuntu-latest | ||
cross: false | ||
publish: true | ||
- target: x86_64-unknown-linux-musl | ||
os: ubuntu-latest | ||
cross: false | ||
- target: aarch64-unknown-linux-gnu | ||
os: ubuntu-latest | ||
cross: true | ||
- target: aarch64-unknown-linux-musl | ||
os: ubuntu-latest | ||
cross: true | ||
- target: x86_64-apple-darwin | ||
os: macos-latest | ||
cross: false | ||
- target: aarch64-apple-darwin | ||
os: macos-latest | ||
cross: false | ||
- target: x86_64-pc-windows-msvc | ||
os: windows-latest | ||
cross: false | ||
- target: aarch64-pc-windows-msvc | ||
os: windows-latest | ||
cross: false | ||
|
||
env: | ||
NAME: lok | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install Rust toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
components: rustfmt, clippy | ||
target: ${{ matrix.job.target }} | ||
|
||
- name: Cargo cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cargo/bin/ | ||
~/.cargo/registry/index/ | ||
~/.cargo/registry/cache/ | ||
~/.cargo/git/db/ | ||
target/ | ||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | ||
|
||
- name: Cargo fmt | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: fmt | ||
args: --all -- --check | ||
|
||
- name: Cargo clippy | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: clippy | ||
args: -- -D warnings | ||
|
||
- name: Cargo test | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
|
||
- name: Cargo build | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: build | ||
args: --release --target=${{ matrix.job.target }} | ||
use-cross: ${{ matrix.job.cross }} | ||
|
||
# -------------- GitHub Relese -------------- | ||
|
||
- name: Package zip (unix) | ||
if: startsWith(github.ref, 'refs/tags/') && matrix.job.os != 'windows-latest' | ||
run: | | ||
cd ./target/${{ matrix.job.target }}/release/ | ||
zip ${{ env.NAME }}-${{ matrix.job.target }}.zip ${{ env.NAME }} | ||
- name: Package zip (windows) | ||
if: startsWith(github.ref, 'refs/tags/') && matrix.job.os == 'windows-latest' | ||
run: | | ||
cd ./target/${{ matrix.job.target }}/release/ | ||
Compress-Archive -CompressionLevel Optimal -Force -Path ${{ env.NAME }}.exe -DestinationPath ${{ env.NAME }}-${{ matrix.job.target }}.zip | ||
- name: GitHub release | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
files: ./target/**/*.zip | ||
|
||
# -------------- Cargo publish -------------- | ||
|
||
- name: Cargo publish | ||
if: startsWith(github.ref, 'refs/tags/') && matrix.job.publish | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: publish | ||
args: --token ${{ secrets.CARGO_TOKEN }} -v |
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,4 @@ | ||
.DS_Store | ||
.idea/ | ||
target/ | ||
temp/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,29 @@ | ||
[package] | ||
name = "lok" | ||
version = "0.2.1" | ||
edition = "2021" | ||
authors = ["wyhaya <wyhaya@gmail.com>"] | ||
description = "Count the number of codes" | ||
homepage = "https://github.com/wyhaya/lok" | ||
repository = "https://github.com/wyhaya/lok.git" | ||
license = "MIT" | ||
readme = "README.md" | ||
|
||
keywords = [ | ||
"codes", | ||
"count", | ||
"count-lines-of-code", | ||
"command-line-tool" | ||
] | ||
|
||
[profile.release] | ||
lto = true | ||
codegen-units = 1 | ||
strip = "symbols" | ||
|
||
[dependencies] | ||
bright = "0.4.1" | ||
clap = "2.34.0" | ||
crossbeam-deque = "0.8.1" | ||
glob = "0.3.0" | ||
walkdir = "2.3.2" |
Oops, something went wrong.