Skip to content

Commit

Permalink
ci: restructure actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodie committed Sep 10, 2024
1 parent c1fa24c commit c0ffeea
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 106 deletions.
103 changes: 103 additions & 0 deletions .github/workflows/build-platforms.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
name: Continuous Integration
on:
# This workflow is triggered on pushes to the repository.
on: [ pull_request, workflow_call, workflow_dispatch ]

jobs:
linux:
name: linux
runs-on: ubuntu-latest
strategy:
#fail-fast: true
matrix:
rust:
- stable
- beta
- stable minus 2 releases
feature:
- d
- d,images
- z
- z,images
- z,d
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
components: clippy, rustfmt
- run: sudo apt-get install -y libdbus-1-dev

- name: check (default features)
run: cargo check

- name: check (${{matrix.feature}})
run: cargo check --no-default-features --features ${{matrix.feature}}

# - name: test (default features)
# run: cargo test

- name: test lib (${{matrix.feature}})
run: cargo test --lib --no-default-features --features ${{matrix.feature}}

# - name: test tests (${{matrix.feature}})
# run: cargo test --tests --no-default-features --features ${{matrix.feature}}

- name: test docs (${{matrix.feature}})
run: cargo test --doc --no-default-features --features ${{matrix.feature}}

- name: clippy (default features)
run: cargo clippy

windows:
name: windows
runs-on: windows-latest
strategy:
matrix:
rust:
- stable
- beta
- stable minus 6 releases
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
components: clippy, rustfmt

- name: check (default features)
run: cargo check

- name: test (default features)
run: cargo test --no-run

- name: clippy (default features)
run: cargo clippy -- -D warnings

macos:
name: macos
runs-on: macos-latest
strategy:
matrix:
rust:
- stable
- beta
- stable minus 6 releases
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
components: clippy, rustfmt

- name: check (default features)
run: cargo check

- name: test (default features)
run: cargo test --no-run

- name: clippy (default features)
run: cargo clippy -- -D warnings
108 changes: 5 additions & 103 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
name: Continuous Integration
on: [push: { branches: [ main ]}, pull_request ]
on:
push:
branches:
- main
pull_request:

jobs:

semver:
name: cargo-semver-checks
runs-on: ubuntu-latest
Expand All @@ -13,104 +16,3 @@ jobs:

- name: check semver
uses: obi1kenobi/[email protected]

linux:
name: linux
needs: pr_check
runs-on: ubuntu-latest
strategy:
#fail-fast: true
matrix:
rust:
- stable
- beta
- stable minus 2 releases
feature:
- d
- d,images
- z
- z,images
- z,d
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
components: clippy, rustfmt
- run: sudo apt-get install -y libdbus-1-dev

- name: check (default features)
run: cargo check

- name: check (${{matrix.feature}})
run: cargo check --no-default-features --features ${{matrix.feature}}

# - name: test (default features)
# run: cargo test

- name: test lib (${{matrix.feature}})
run: cargo test --lib --no-default-features --features ${{matrix.feature}}

# - name: test tests (${{matrix.feature}})
# run: cargo test --tests --no-default-features --features ${{matrix.feature}}

- name: test docs (${{matrix.feature}})
run: cargo test --doc --no-default-features --features ${{matrix.feature}}

- name: clippy (default features)
run: cargo clippy

windows:
name: windows
needs: pr_check
runs-on: windows-latest
strategy:
matrix:
rust:
- stable
- beta
- stable minus 6 releases
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
components: clippy, rustfmt

- name: check (default features)
run: cargo check

- name: test (default features)
run: cargo test --no-run

- name: clippy (default features)
run: cargo clippy -- -D warnings

macos:
name: macos
needs: pr_check
runs-on: macos-latest
strategy:
matrix:
rust:
- stable
- beta
- stable minus 6 releases
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
components: clippy, rustfmt

- name: check (default features)
run: cargo check

- name: test (default features)
run: cargo test --no-run

- name: clippy (default features)
run: cargo clippy -- -D warnings
5 changes: 2 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Pull request
# This workflow is triggered on pushes to the repository.
on: [ pull_request ]

jobs:
Expand All @@ -18,7 +19,7 @@ jobs:
./convco check ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
rm convco
check_fmt_clippy:
check_fmt:
name: Check Format
needs: check
runs-on: ubuntu-latest
Expand All @@ -30,6 +31,4 @@ jobs:
- name: cargo-fmt
run: cargo fmt --all --check

#- name: clippy
# run: cargo clippy --all-features -- -D warnings

0 comments on commit c0ffeea

Please sign in to comment.