Compare commits

...

2 Commits

Author SHA1 Message Date
cf5b30015a build: Update release pipeline
Signed-off-by: Noah Knegt <git@noahknegt.com>
2025-07-03 23:40:41 +02:00
476f849ded build: Update the linting workflow
Signed-off-by: Noah Knegt <git@noahknegt.com>
2025-07-03 23:37:27 +02:00
2 changed files with 50 additions and 76 deletions

View File

@@ -7,18 +7,36 @@ env:
CARGO_TERM_COLOR: always
jobs:
cargo-fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
# Cache cargo registry
- name: Hash the lock file
uses: https://gitea.com/seepine/hash-files@v1
id: get-hash
with:
patterns: |
**/Cargo.lock
- name: Setup rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: rustfmt,clippy
cache-shared-key: cargo-${{ steps.get-hash.outputs.hash }}
- name: Rustfmt Check
uses: actions-rust-lang/rustfmt@v1
cargo-check:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt,clippy
# Cache cargo registry
- name: Hash the lock file
uses: https://gitea.com/seepine/hash-files@v1
@@ -26,37 +44,23 @@ jobs:
with:
patterns: |
**/Cargo.lock
- name: Cache cargo registry
uses: actions/cache@v3
- name: Setup rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-${{ steps.get-hash.outputs.hash }}
restore-keys: |
cargo-
# Cache cargo registry - end
toolchain: stable
components: rustfmt,clippy
cache-shared-key: cargo-${{ steps.get-hash.outputs.hash }}
- name: Cargo check
uses: actions-rs/cargo@v1
with:
command: check
run: cargo check --workspace
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt,clippy
# Cache cargo registry
- name: Hash the lock file
uses: https://gitea.com/seepine/hash-files@v1
@@ -64,22 +68,13 @@ jobs:
with:
patterns: |
**/Cargo.lock
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-${{ steps.get-hash.outputs.hash }}
restore-keys: |
cargo-
# Cache cargo registry - end
- name: Run clippy
uses: actions-rs/clippy-check@v1
- name: Setup rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets --all-features -- -Dwarnings
toolchain: stable
components: rustfmt,clippy
cache-shared-key: cargo-${{ steps.get-hash.outputs.hash }}
- name: Cargo check
run: cargo clippy --all-targets --all-features -- -Dwarnings

View File

@@ -15,53 +15,32 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
# Cache cargo registry
# Cache cargo registry
- name: Hash the lock file
uses: https://gitea.com/seepine/hash-files@v1
id: get-hash
with:
patterns: |
**/Cargo.lock
- name: Cache cargo registry
uses: actions/cache@v4
- name: Setup rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-${{ steps.get-hash.outputs.hash }}
restore-keys: |
cargo-
# Cache cargo registry - end
toolchain: stable
cache-shared-key: cargo-${{ steps.get-hash.outputs.hash }}
matcher: false
- name: Build application
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features --workspace --all-targets
run: cargo build --release --all-features --workspace --all-targets
- name: Package application
uses: actions-rs/cargo@v1
with:
command: package
args: --all-features --workspace --allow-dirty
ru8n: cargo package --all-features --workspace --allow-dirty
- name: Add registry to cargo config
run: echo -e '[registries.gitea]\nindex = "sparse+https://git.noahknegt.com/api/packages/${{ github.repository_owner }}/cargo/"\n' > ~/.cargo/config.toml
- name: Publish to cargo registry
uses: actions-rs/cargo@v1
with:
command: publish
args: --no-verify --registry gitea --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish --no-verify --registry gitea --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
env:
CARGO_NET_GIT_FETCH_WITH_CLI: true
CARGO_NET_RETRY: 2