mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-18 23:02:31 +03:00
e91bd7e605
Bumps [dorny/paths-filter](https://github.com/dorny/paths-filter) from 2 to 3. - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](https://github.com/dorny/paths-filter/compare/v2...v3) --- updated-dependencies: - dependency-name: dorny/paths-filter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
212 lines
5.6 KiB
YAML
212 lines
5.6 KiB
YAML
name: "Test"
|
|
on: [push]
|
|
|
|
jobs:
|
|
changes:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
node: ${{ steps.filter.outputs.node }}
|
|
rust: ${{ steps.filter.outputs.rust }}
|
|
gitbutler-app: ${{ steps.filter.outputs.gitbutler-app }}
|
|
gitbutler-core: ${{ steps.filter.outputs.gitbutler-core }}
|
|
gitbutler-git: ${{ steps.filter.outputs.gitbutler-git }}
|
|
gitbutler-diff: ${{ steps.filter.outputs.gitbutler-diff }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dorny/paths-filter@v3
|
|
id: filter
|
|
with:
|
|
filters: |
|
|
node:
|
|
- 'gitbutler-ui/**'
|
|
- 'package.json'
|
|
- 'pnpm-lock.yaml'
|
|
common-rust: &rust
|
|
- 'Cargo.lock'
|
|
- 'Cargo.toml'
|
|
- 'rust-toolchain.toml'
|
|
rust: &any-rust
|
|
- *rust
|
|
- 'gitbutler-!(ui)/**'
|
|
gitbutler-app:
|
|
- *any-rust
|
|
gitbutler-core:
|
|
- *rust
|
|
- 'gitbutler-core/**'
|
|
gitbutler-git:
|
|
- *rust
|
|
- 'gitbutler-git/**'
|
|
gitbutler-diff:
|
|
- *rust
|
|
- 'gitbutler-diff/**'
|
|
|
|
lint-node:
|
|
needs: changes
|
|
if: ${{ needs.changes.outputs.node == 'true' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/init-env-node
|
|
- run: pnpm lint
|
|
|
|
check-node:
|
|
needs: changes
|
|
if: ${{ needs.changes.outputs.node == 'true' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/init-env-node
|
|
- run: pnpm check
|
|
|
|
unittest-node:
|
|
needs: changes
|
|
if: ${{ needs.changes.outputs.node == 'true' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/init-env-node
|
|
- run: pnpm test
|
|
|
|
rust-init:
|
|
needs: changes
|
|
if: ${{ needs.changes.outputs.rust == 'true' }}
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/gitbutlerapp/ci-base-image:latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/init-env-rust
|
|
- run: cargo fmt --check --all
|
|
- run: cargo build --locked --all-targets --tests
|
|
|
|
rust-docs:
|
|
needs: changes
|
|
if: ${{ needs.changes.outputs.rust == 'true' }}
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/gitbutlerapp/ci-base-image:latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/init-env-rust
|
|
# TODO(qix-): we have to exclude the app here for now because for some
|
|
# TODO(qix-): reason it doesn't build with the docs feature enabled.
|
|
- run: cargo doc --no-deps --all-features --document-private-items -p gitbutler-core -p gitbutler-git -p gitbutler-diff
|
|
env:
|
|
RUSTDOCFLAGS: -Dwarnings
|
|
|
|
check-gitbutler-app:
|
|
needs: [changes, rust-init]
|
|
if: ${{ needs.changes.outputs.gitbutler-app == 'true' }}
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/gitbutlerapp/ci-base-image:latest
|
|
strategy:
|
|
matrix:
|
|
action:
|
|
- test
|
|
- check
|
|
- check-tests
|
|
features:
|
|
- ''
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/check-crate
|
|
with:
|
|
crate: gitbutler-app
|
|
features: ${{ toJson(matrix.features) }}
|
|
action: ${{ matrix.action }}
|
|
|
|
check-gitbutler-git:
|
|
needs: [changes, rust-init]
|
|
if: ${{ needs.changes.outputs.gitbutler-git == 'true' }}
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/gitbutlerapp/ci-base-image:latest
|
|
strategy:
|
|
matrix:
|
|
action:
|
|
- test
|
|
- check
|
|
- check-tests
|
|
features:
|
|
- ''
|
|
- '*'
|
|
- []
|
|
- [cli]
|
|
- [cli, tokio]
|
|
- [serde]
|
|
- [git2]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/check-crate
|
|
with:
|
|
crate: gitbutler-git
|
|
features: ${{ toJson(matrix.features) }}
|
|
action: ${{ matrix.action }}
|
|
|
|
check-gitbutler-diff:
|
|
needs: [changes, rust-init]
|
|
if: ${{ needs.changes.outputs.gitbutler-diff == 'true' }}
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/gitbutlerapp/ci-base-image:latest
|
|
strategy:
|
|
matrix:
|
|
action:
|
|
- test
|
|
- check
|
|
- check-tests
|
|
features:
|
|
- ''
|
|
- '*'
|
|
- []
|
|
- [git2]
|
|
- [mmap]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/check-crate
|
|
with:
|
|
crate: gitbutler-diff
|
|
features: ${{ toJson(matrix.features) }}
|
|
action: ${{ matrix.action }}
|
|
|
|
check-gitbutler-core:
|
|
needs: [changes, rust-init]
|
|
if: ${{ needs.changes.outputs.gitbutler-core == 'true' }}
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/gitbutlerapp/ci-base-image:latest
|
|
strategy:
|
|
matrix:
|
|
action:
|
|
- test
|
|
- check
|
|
- check-tests
|
|
features:
|
|
- ''
|
|
- '*'
|
|
- []
|
|
- [serde]
|
|
- [rusqlite]
|
|
- [serde, rusqlite]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/check-crate
|
|
with:
|
|
crate: gitbutler-core
|
|
features: ${{ toJson(matrix.features) }}
|
|
action: ${{ matrix.action }}
|
|
|
|
check-rust:
|
|
needs:
|
|
- changes
|
|
- check-gitbutler-app
|
|
- check-gitbutler-git
|
|
- check-gitbutler-diff
|
|
- check-gitbutler-core
|
|
runs-on: ubuntu-latest
|
|
if: ${{ needs.changes.outputs.rust == 'true' }}
|
|
steps:
|
|
- run: ':'
|
|
shell: bash
|