Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
akarsh1995 committed Jul 30, 2023
2 parents 5c8ed7a + ca0bf8d commit 7e4f5bc
Showing 1 changed file with 94 additions and 105 deletions.
199 changes: 94 additions & 105 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [ "dev", "master" ]
branches: ["dev", "master"]
pull_request:
branches: [ master ]
branches: [master]

env:
CARGO_TERM_COLOR: always
Expand All @@ -15,126 +15,115 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [nightly, stable, '1.70']
rust: [stable, "1.70"]
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.rust == 'nightly' }}

steps:
- uses: actions/checkout@v2

- name: Restore cargo cache
uses: actions/cache@v2
env:
cache-name: ci
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
target
key: ${{ matrix.os }}-${{ env.cache-name }}-${{ matrix.rust }}-${{ hashFiles('Cargo.lock') }}

- name: MacOS Workaround
if: matrix.os == 'macos-latest'
run: cargo clean -p serde_derive -p thiserror

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
default: true
override: true
profile: minimal
components: clippy

- name: Build Debug
run: |
cargo build
- name: Run tests
run: cargo test

- name: Run clippy
run: |
cargo clippy --workspace --all-features
- name: Build Release
run: cargo build --release

- name: Test Install
run: cargo install --path "." --force

- name: Binary Size (unix)
if: matrix.os != 'windows-latest'
run: |
ls -l ./target/release/leetui
- name: Binary Size (win)
if: matrix.os == 'windows-latest'
run: |
ls -l ./target/release/leetui.exe
- name: Binary dependencies (mac)
if: matrix.os == 'macos-latest'
run: |
otool -L ./target/release/leetui
- name: Build MSI (windows)
if: matrix.os == 'windows-latest'
run: |
cargo install cargo-wix --version 0.3.3
cargo wix --version
cargo wix -p leetui --no-build --nocapture --output ./target/wix/leetui.msi
ls -l ./target/wix/leetui.msi
- uses: actions/checkout@v2

- name: Restore cargo cache
uses: actions/cache@v2
env:
cache-name: ci
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
target
key: ${{ matrix.os }}-${{ env.cache-name }}-${{ matrix.rust }}-${{ hashFiles('Cargo.lock') }}

- name: MacOS Workaround
if: matrix.os == 'macos-latest'
run: cargo clean -p serde_derive -p thiserror

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
default: true
override: true
profile: minimal
components: clippy

- name: Build Debug
run: |
cargo build
- name: Run tests
run: cargo test

- name: Run clippy
run: |
cargo clippy --workspace --all-features
- name: Build Release
run: cargo build --release

- name: Test Install
run: cargo install --path "." --force

- name: Binary Size (unix)
if: matrix.os != 'windows-latest'
run: |
ls -l ./target/release/leetui
- name: Binary Size (win)
if: matrix.os == 'windows-latest'
run: |
ls -l ./target/release/leetui.exe
- name: Binary dependencies (mac)
if: matrix.os == 'macos-latest'
run: |
otool -L ./target/release/leetui
linting:
name: Lints
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt
- uses: actions/checkout@master
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt

- run: cargo fmt -- --check
- run: cargo fmt -- --check

- name: cargo-sort
run: |
cargo install cargo-sort --force
cargo sort -c -w
- name: cargo-sort
run: |
cargo install cargo-sort --force
cargo sort -c -w
- name: cargo-deny install
run: |
cargo install --locked cargo-deny
- name: cargo-deny install
run: |
cargo install --locked cargo-deny
# - name: cargo-deny licenses
# run: |
# cargo deny check licenses
# - name: cargo-deny licenses
# run: |
# cargo deny check licenses

- name: cargo-deny bans
run: |
cargo deny check bans
- name: cargo-deny bans
run: |
cargo deny check bans
udeps:
name: udeps
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true

- name: cargo-udeps
run: |
# cargo install --locked cargo-udeps
cargo install --git https://github.com/est31/cargo-udeps --locked
cargo +nightly udeps --all-targets
- uses: actions/checkout@master
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true

- name: cargo-udeps
run: |
# cargo install --locked cargo-udeps
cargo install --git https://github.com/est31/cargo-udeps --locked
cargo +nightly udeps --all-targets
# sec:
# name: Security audit
Expand Down

0 comments on commit 7e4f5bc

Please sign in to comment.