Skip to content

Commit cb88387

Browse files
Merge pull request #87 from sebastienrousseau/feat/hsh
v0.0.8
2 parents 661a806 + 270ee8e commit cb88387

37 files changed

+964
-1363
lines changed

.cargo/config.toml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/workflows/audit.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: 🧪 Audit
33
on:
44
push:
55
branches:
6+
- main
67
- feat/hsh
78
pull_request:
89
branches:
@@ -18,6 +19,10 @@ jobs:
1819
- uses: hecrj/setup-rust-action@v2
1920
- name: Install cargo-audit
2021
run: cargo install cargo-audit
22+
2123
- uses: actions/checkout@v4
22-
- name: Audit dependencies
24+
- name: Resolve dependencies
25+
run: cargo update
26+
27+
- name: Audit vulnerabilities
2328
run: cargo audit

.github/workflows/check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: 🧪 Check
33
on:
44
push:
55
branches:
6+
- main
67
- feat/hsh
78
pull_request:
89
branches:

.github/workflows/coverage.yml

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: 📶 Coverage
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
coverage:
14+
name: Code Coverage
15+
runs-on: ubuntu-latest
16+
env:
17+
CARGO_INCREMENTAL: "0"
18+
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests"
19+
RUSTDOCFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests"
20+
21+
steps:
22+
# Checkout the repository
23+
- name: Checkout repository
24+
uses: actions/checkout@v4
25+
26+
# Setup Rust nightly
27+
- name: Install Rust
28+
uses: actions-rs/toolchain@v1
29+
id: toolchain
30+
with:
31+
toolchain: nightly
32+
override: true
33+
34+
# Configure cache for Cargo
35+
- name: Cache Cargo registry, index
36+
uses: actions/cache@v4
37+
id: cache-cargo
38+
with:
39+
path: |
40+
~/.cargo/registry
41+
~/.cargo/bin
42+
~/.cargo/git
43+
key: linux-${{ steps.toolchain.outputs.rustc_hash }}-rust-cov-${{ hashFiles('**/Cargo.lock') }}
44+
45+
# Run tests with all features
46+
- name: Test (cargo test)
47+
uses: actions-rs/cargo@v1
48+
with:
49+
command: test
50+
args: "--workspace"
51+
52+
# Install grcov
53+
- uses: actions-rs/[email protected]
54+
id: coverage
55+
56+
# Upload to Codecov.io
57+
- name: Upload to Codecov.io
58+
uses: codecov/codecov-action@v4
59+
with:
60+
token: ${{ secrets.CODECOV_TOKEN }}
61+
file: ${{ steps.coverage.outputs.report }}

.github/workflows/document.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: 🧪 Document
33
on:
44
push:
55
branches:
6-
- feat/hsh
6+
- main
77
pull_request:
88
branches:
9-
- feat/hsh
9+
- main
1010
release:
1111
types: [created]
1212

@@ -45,16 +45,15 @@ jobs:
4545
retention-days: 1
4646

4747
- name: Write CNAME file
48-
run: echo 'doc.hshlib.one' > ./target/doc/CNAME
48+
run: echo 'doc.hshlib.com' > ./target/doc/CNAME
4949

5050
- name: Deploy to GitHub Pages
5151
uses: peaceiris/actions-gh-pages@v4
5252
with:
53-
github_token: ${{ secrets.GITHUB_TOKEN }}
54-
publish_dir: ./target/doc
55-
publish_branch: gh-pages
5653
cname: true
57-
clean: true
5854
commit_message: Deploy documentation at ${{ github.sha }}
59-
commit_user_name: github-actions
60-
commit_user_email: [email protected]
55+
github_token: ${{ secrets.GITHUB_TOKEN }}
56+
publish_branch: gh-pages
57+
publish_dir: ./target/doc
58+
user_email: [email protected]
59+
user_name: github-actions

.github/workflows/release.yml

Lines changed: 18 additions & 108 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
name: 🧪 Release
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- feat/hsh
8+
pull_request:
9+
branches:
10+
- feat/hsh
11+
release:
12+
types: [created]
413

514
concurrency:
615
group: ${{ github.ref }}
@@ -21,114 +30,25 @@ jobs:
2130
BUILD_ID: ${{ github.run_id }}
2231
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_API_TOKEN }}
2332
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24-
OS: ${{ matrix.os }}
25-
TARGET: ${{ matrix.target }}
33+
OS: ${{ matrix.platform.os }}
34+
TARGET: ${{ matrix.platform.target }}
2635

2736
strategy:
2837
fail-fast: false
2938
matrix:
30-
target:
31-
# List of targets:
32-
# https://doc.rust-lang.org/nightly/rustc/platform-support.html
33-
34-
# Tier 1 platforms 🏆
35-
- aarch64-unknown-linux-gnu # 64-bit Linux systems on ARM architecture
36-
- i686-pc-windows-gnu # 32-bit Windows (i686-pc-windows-gnu)
37-
- i686-pc-windows-msvc # 32-bit Windows (i686-pc-windows-msvc)
38-
- i686-unknown-linux-gnu # 32-bit Linux (kernel 3.2+, glibc 2.17+)
39-
- x86_64-apple-darwin # 64-bit macOS (10.7 Lion or later)
40-
- x86_64-pc-windows-gnu # 64-bit Windows (x86_64-pc-windows-gnu)
41-
- x86_64-pc-windows-msvc # 64-bit Windows (x86_64-pc-windows-msvc)
42-
- x86_64-unknown-linux-gnu # 64-bit Linux (kernel 2.6.32+, glibc 2.11+)
43-
44-
# Tier 2 platforms 🥈
45-
- aarch64-apple-darwin # 64-bit macOS on Apple Silicon
46-
- aarch64-pc-windows-msvc # 64-bit Windows (aarch64-pc-windows-msvc)
47-
- aarch64-unknown-linux-musl # 64-bit Linux systems on ARM architecture
48-
- arm-unknown-linux-gnueabi # ARMv6 Linux (kernel 3.2, glibc 2.17)
49-
- arm-unknown-linux-gnueabihf # ARMv7 Linux, hardfloat (kernel 3.2, glibc 2.17)
50-
- armv7-unknown-linux-gnueabihf # ARMv7 Linux, hardfloat (kernel 3.2, glibc 2.17)
51-
- powerpc-unknown-linux-gnu # PowerPC Linux (kernel 3.2, glibc 2.17)
52-
- powerpc64-unknown-linux-gnu # PowerPC64 Linux (kernel 3.2, glibc 2.17)
53-
- powerpc64le-unknown-linux-gnu # PowerPC64le Linux (kernel 3.2, glibc 2.17)
54-
- riscv64gc-unknown-linux-gnu # RISC-V Linux (kernel 3.2, glibc 2.17)
55-
- s390x-unknown-linux-gnu # s390x Linux (kernel 3.2, glibc 2.17)
56-
- x86_64-unknown-freebsd # 64-bit FreeBSD on x86-64
57-
- x86_64-unknown-linux-musl # 64-bit Linux (kernel 2.6.32+, musl libc)
58-
- x86_64-unknown-netbsd # 64-bit NetBSD on x86-64
59-
60-
include:
61-
# Tier 1 platforms 🏆
62-
- target: aarch64-unknown-linux-gnu
63-
os: ubuntu-latest
64-
cross: true
65-
- target: i686-pc-windows-gnu
66-
os: ubuntu-latest
67-
cross: true
68-
- target: i686-pc-windows-msvc
39+
platform:
40+
- target: x86_64-pc-windows-msvc
41+
os: windows-latest
42+
- target: aarch64-pc-windows-msvc
6943
os: windows-latest
70-
cross: true
71-
- target: i686-unknown-linux-gnu
72-
os: ubuntu-latest
73-
cross: true
7444
- target: x86_64-apple-darwin
7545
os: macos-latest
76-
cross: true
77-
- target: x86_64-pc-windows-gnu
78-
os: ubuntu-latest
79-
cross: true
80-
- target: x86_64-pc-windows-msvc
81-
os: windows-latest
82-
cross: true
83-
- target: x86_64-unknown-linux-gnu
84-
os: ubuntu-latest
85-
cross: true
86-
87-
# Tier 2 platforms 🥈
8846
- target: aarch64-apple-darwin
8947
os: macos-latest
90-
cross: true
91-
- target: aarch64-pc-windows-msvc
92-
os: windows-latest
93-
cross: true
94-
- target: aarch64-unknown-linux-musl
95-
os: ubuntu-latest
96-
cross: true
97-
- target: arm-unknown-linux-gnueabi
98-
os: ubuntu-latest
99-
cross: true
100-
- target: arm-unknown-linux-gnueabihf
101-
os: ubuntu-latest
102-
cross: true
103-
- target: armv7-unknown-linux-gnueabihf
104-
os: ubuntu-latest
105-
cross: true
106-
- target: powerpc-unknown-linux-gnu
107-
os: ubuntu-latest
108-
cross: true
109-
- target: powerpc64-unknown-linux-gnu
110-
os: ubuntu-latest
111-
cross: true
112-
- target: powerpc64le-unknown-linux-gnu
113-
os: ubuntu-latest
114-
cross: true
115-
- target: riscv64gc-unknown-linux-gnu
116-
os: ubuntu-latest
117-
cross: true
118-
- target: s390x-unknown-linux-gnu
119-
os: ubuntu-latest
120-
cross: true
121-
- target: x86_64-unknown-freebsd
122-
os: ubuntu-latest
123-
cross: true
124-
- target: x86_64-unknown-linux-musl
125-
os: ubuntu-latest
126-
cross: true
127-
- target: x86_64-unknown-netbsd
48+
- target: x86_64-unknown-linux-gnu
12849
os: ubuntu-latest
129-
cross: true
13050

131-
runs-on: ${{ matrix.os }}
51+
runs-on: ${{ matrix.platform.os }}
13252

13353
steps:
13454
# Check out the repository code.
@@ -158,21 +78,11 @@ jobs:
15878
id: install-target
15979
run: rustup target add ${{ env.TARGET }}
16080

161-
- name: Install Cross and clean artifacts
162-
run: |
163-
# Install cross
164-
cargo install cross
165-
166-
# Clean the build artifacts
167-
cargo clean --verbose
168-
shell: bash
169-
17081
# Build the targets
17182
- name: Build targets
17283
id: build-targets
17384
uses: actions-rs/cargo@v1
17485
with:
175-
use-cross: true
17686
command: build
17787
args: --verbose --workspace --release --target ${{ env.TARGET }}
17888

.github/workflows/test.yml

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -37,33 +37,4 @@ jobs:
3737
# Run tests with all features
3838
- name: Run tests with all features
3939
id: run-tests-all-features
40-
run: cargo test --verbose --workspace --all-features
41-
42-
# Install grcov
43-
- name: Install grcov
44-
# Only run this job on the main branch when a commit is pushed.
45-
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
46-
id: install-grcov
47-
run: |
48-
mkdir -p "${HOME}/.local/bin"
49-
curl -sL https://github.com/mozilla/grcov/releases/download/v0.8.18/grcov-x86_64-unknown-linux-gnu.tar.bz2 | tar jxf - -C "${HOME}/.local/bin"
50-
echo "$HOME/.local/bin" >> $GITHUB_PATH
51-
52-
# Use grcov to generate a coverage report
53-
- name: Generate coverage report
54-
# Only run this job on the main branch when a commit is pushed.
55-
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
56-
id: generate-code-coverage
57-
uses: actions-rs/[email protected]
58-
with:
59-
command: xtask
60-
args: coverage
61-
62-
# Upload the coverage report to codecov
63-
- name: Upload coverage report to codecov
64-
# Only run this job on the main branch when a commit is pushed.
65-
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
66-
id: upload-report-codecov
67-
uses: codecov/codecov-action@v4
68-
with:
69-
files: coverage/*.lcov
40+
run: cargo test --verbose --workspace --all-features

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ build
88
Icon?
99
src/.DS_Store
1010
tarpaulin-report.html
11+
Cargo.lock

0 commit comments

Comments
 (0)