mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-25 18:49:11 +03:00
commit
8ac5865046
10
.github/workflows/push.yaml
vendored
10
.github/workflows/push.yaml
vendored
@ -203,6 +203,7 @@ jobs:
|
||||
- check-gitbutler-core
|
||||
- check-gitbutler-changeset
|
||||
- check-gitbutler-git
|
||||
- check-rust-windows
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Decide whether the needed jobs succeeded or failed
|
||||
@ -211,3 +212,12 @@ jobs:
|
||||
allowed-skips: ${{ toJSON(needs) }}
|
||||
jobs: ${{ toJSON(needs) }}
|
||||
|
||||
check-rust-windows:
|
||||
needs: changes
|
||||
runs-on: windows-latest
|
||||
if: ${{ needs.changes.outputs.rust == 'true' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
- name: "cargo check"
|
||||
run: cargo check --all --bins --examples
|
||||
|
@ -36,6 +36,7 @@ nix = { version = "0.28.0", features = ["process", "socket", "user"] }
|
||||
|
||||
[target."cfg(windows)".dependencies]
|
||||
winapi = { version = "0.3.9", features = ["winbase", "namedpipeapi"] }
|
||||
tokio = { workspace = true, optional = true, features = ["sync"] }
|
||||
# synchronous named pipes for the askpass utility
|
||||
windows-named-pipe = "0.1.0"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user