Skip to content

Commit

Permalink
ci(github-actions): better structure & shorter action names
Browse files Browse the repository at this point in the history
  • Loading branch information
graelo committed Nov 8, 2022
1 parent 451726a commit 4b52de2
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 50 deletions.
36 changes: 23 additions & 13 deletions .github/workflows/essentials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
test:
name: Test
name: Quality checks & tests
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -40,9 +40,12 @@ jobs:
target/
key: '${{ runner.os }}-cargo-${{ matrix.rust }}-hash-${{ hashFiles(''**/Cargo.lock'') }}'

- name: Lint
- name: Quality - cargo fmt
run: |
cargo fmt --all -- --check
- name: Quality - cargo clippy
run: |
cargo clippy -- -D warnings
- name: Quality - convco check
Expand All @@ -61,22 +64,29 @@ jobs:
mv cargo-deny ~/.cargo/bin/
cargo deny check
- name: Install cargo check tools
- name: Quality - cargo audit check
run: |
curl -sSfL https://github.com/rustsec/rustsec/releases/download/cargo-audit%2Fv0.17.3/cargo-audit-x86_64-unknown-linux-musl-v0.17.3.tgz | tar zx --no-anchored cargo-audit --strip-components=1
chmod +x cargo-audit
mv cargo-audit ~/.cargo/bin/
rm -rf ~/.cargo/advisory-db/
cargo audit --ignore RUSTSEC-2020-0071 # time-rs, but not used by chrono, see https://github.com/chronotope/chrono/issues/602
- name: Quality - cargo outdated
timeout-minutes: 20
if: ${{ matrix.rust == 'stable' }}
run: |
cargo install --locked cargo-outdated || true
# cargo install --locked cargo-udeps || true # needs nightly
cargo install --locked cargo-audit || true
cargo install --locked cargo-pants || true
rm -rf ~/.cargo/advisory-db
cargo outdated --exit-code 1
# - name: Quality - cargo udeps (needs nightly)
# run: |
# cargo install --locked cargo-udeps || true
# cargo udeps

- name: Check
if: ${{ matrix.rust == 'stable' }}
- name: Quality - cargo pants
run: |
cargo outdated --exit-code 1
# cargo udeps
rm -rf ~/.cargo/advisory-db
cargo audit --ignore RUSTSEC-2020-0071 # time-rs, but not used by chrono, see https://github.com/chronotope/chrono/issues/602
cargo install --locked cargo-pants || true
cargo pants
- name: Build (dev)
Expand Down
110 changes: 73 additions & 37 deletions .github/workflows/large-scope.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test-versions:
name: Test version compatibility on Linux
name: Tests on Linux
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -38,27 +38,53 @@ jobs:
target/
key: '${{ runner.os }}-cargo-${{ matrix.rust }}-hash-${{ hashFiles(''**/Cargo.lock'') }}'

- name: Lint
- name: Quality - cargo fmt
run: |
cargo fmt --all -- --check
- name: Quality - cargo clippy
run: |
cargo clippy -- -D warnings
# - name: Install cargo check tools
# - name: Quality - convco check
# run: |
# git show-ref
# curl -sSfLO https://github.com/convco/convco/releases/latest/download/convco-ubuntu.zip
# unzip convco-ubuntu.zip
# chmod +x convco
# ./convco check
# rm convco

# - name: Quality - cargo deny check
# run: |
# curl -sSfL https://github.com/EmbarkStudios/cargo-deny/releases/download/0.12.2/cargo-deny-0.12.2-x86_64-unknown-linux-musl.tar.gz | tar zx --no-anchored cargo-deny --strip-components=1
# chmod +x cargo-deny
# mv cargo-deny ~/.cargo/bin/
# cargo deny check

# - name: Quality - cargo audit check
# run: |
# curl -sSfL https://github.com/rustsec/rustsec/releases/download/cargo-audit%2Fv0.17.3/cargo-audit-x86_64-unknown-linux-musl-v0.17.3.tgz | tar zx --no-anchored cargo-audit --strip-components=1
# chmod +x cargo-audit
# mv cargo-audit ~/.cargo/bin/
# rm -rf ~/.cargo/advisory-db/
# cargo audit --ignore RUSTSEC-2020-0071 # time-rs, but not used by chrono, see https://github.com/chronotope/chrono/issues/602

# - name: Quality - cargo outdated
# timeout-minutes: 20
# if: ${{ matrix.rust == 'stable' }}
# run: |
# cargo install --locked cargo-outdated || true
# # cargo install --locked cargo-udeps || true # needs nightly
# cargo install --locked cargo-audit || true
# cargo install --locked cargo-pants || true
# rm -rf ~/.cargo/advisory-db
# cargo outdated --exit-code 1

# - name: Check
# if: ${{ matrix.rust == 'stable' }}
# - name: Quality - cargo udeps (needs nightly)
# run: |
# cargo outdated --exit-code 1
# # cargo udeps
# rm -rf ~/.cargo/advisory-db
# cargo audit --ignore RUSTSEC-2020-0071 # time-rs, but not used by chrono, see https://github.com/chronotope/chrono/issues/602
# cargo install --locked cargo-udeps || true
# cargo udeps

# - name: Quality - cargo pants
# run: |
# cargo install --locked cargo-pants || true
# cargo pants

- name: Build (dev)
Expand All @@ -71,22 +97,24 @@ jobs:
run: ./ci/test_full.sh

test-other-platforms:
name: Test on other platforms with stable
name: Tests on
runs-on: '${{ matrix.os }}'
strategy:
matrix:
include:
- os: macos-latest
target: x86_64-apple-darwin
type: unix
toolchain: stable
- os: macos-latest
target: aarch64-apple-darwin
type: unix
toolchain: stable
steps:
- name: Rust install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: ${{ matrix.toolchain }}
profile: minimal
override: true
target: ${{ matrix.target }}
Expand All @@ -107,10 +135,13 @@ jobs:
target/
key: '${{ runner.os }}-${{ matrix.target }}-cargo-stable-${{ hashFiles(''**/Cargo.lock'') }}'

- name: Lint
run: |
cargo fmt --all -- --check
cargo clippy -- -D warnings
# - name: Quality - cargo fmt
# run: |
# cargo fmt --all -- --check

# - name: Quality - cargo clippy
# run: |
# cargo clippy -- -D warnings

# - name: Quality - convco check
# run: |
Expand All @@ -120,33 +151,38 @@ jobs:
# chmod +x convco
# ./convco check
# rm convco
# shell: bash

# - name: Quality - cargo deny check
# run: |
# curl -sSfL https://github.com/EmbarkStudios/cargo-deny/releases/download/0.12.2/cargo-deny-0.12.2-x86_64-unknown-linux-musl.tar.gz | tar zx --no-anchored cargo-deny --strip-components=1
# chmod +x cargo-deny
# mv cargo-deny ~/.cargo/bin/
# cargo deny check
# shell: bash

- name: Install cargo check tools
timeout-minutes: 20
run: |
cargo install --locked cargo-outdated || true
# cargo install --locked cargo-udeps || true # needs nightly
cargo install --locked cargo-audit || true
cargo install --locked cargo-pants || true
shell: bash
# - name: Quality - cargo audit check
# run: |
# curl -sSfL https://github.com/rustsec/rustsec/releases/download/cargo-audit%2Fv0.17.3/cargo-audit-x86_64-unknown-linux-musl-v0.17.3.tgz | tar zx --no-anchored cargo-audit --strip-components=1
# chmod +x cargo-audit
# mv cargo-audit ~/.cargo/bin/
# rm -rf ~/.cargo/advisory-db/
# cargo audit --ignore RUSTSEC-2020-0071 # time-rs, but not used by chrono, see https://github.com/chronotope/chrono/issues/602

- name: Check
run: |
cargo outdated --exit-code 1
# cargo udeps
rm -rf ~/.cargo/advisory-db
cargo audit --ignore RUSTSEC-2020-0071 # time-rs, but not used by chrono, see https://github.com/chronotope/chrono/issues/602
cargo pants
shell: bash
# - name: Quality - cargo outdated
# timeout-minutes: 20
# run: |
# cargo install --locked cargo-outdated || true
# rm -rf ~/.cargo/advisory-db
# cargo outdated --exit-code 1

# - name: Quality - cargo udeps (needs nightly)
# run: |
# cargo install --locked cargo-udeps || true
# cargo udeps

# - name: Quality - cargo pants
# run: |
# cargo install --locked cargo-pants || true
# cargo pants

- name: Build (dev)
run: cargo build --all-features
Expand Down

0 comments on commit 4b52de2

Please sign in to comment.