mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 05:10:55 +00:00
kratactl: fix windows build
This commit is contained in:
parent
87689067a3
commit
901ec3b6e5
7
.github/workflows/client.yml
vendored
7
.github/workflows/client.yml
vendored
@ -31,12 +31,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
targets: "${{ matrix.arch }}-apple-darwin"
|
targets: "${{ matrix.arch }}-apple-darwin"
|
||||||
if: ${{ matrix.os.name == 'darwin' }}
|
if: ${{ matrix.os.name == 'darwin' }}
|
||||||
- run: ./hack/ci/install-deps.sh
|
|
||||||
if: ${{ matrix.os.name == 'linux' }}
|
|
||||||
- uses: homebrew/actions/setup-homebrew@master
|
- uses: homebrew/actions/setup-homebrew@master
|
||||||
if: ${{ matrix.os.name == 'darwin' }}
|
if: ${{ matrix.os.name == 'darwin' }}
|
||||||
- run: ./hack/ci/install-mac-deps.sh
|
- run: ./hack/ci/install-${{ matrix.os.name }}-deps.sh
|
||||||
if: ${{ matrix.os.name == 'darwin' }}
|
|
||||||
- run: ./hack/ci/install-windows-deps.sh
|
|
||||||
if: ${{ matrix.os.name == 'windows' }}
|
|
||||||
- run: ./hack/build/cargo.sh build --bin kratactl
|
- run: ./hack/build/cargo.sh build --bin kratactl
|
||||||
|
2
.github/workflows/kernel.yml
vendored
2
.github/workflows/kernel.yml
vendored
@ -22,7 +22,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: dtolnay/rust-toolchain@stable
|
- uses: dtolnay/rust-toolchain@stable
|
||||||
- run: ./hack/ci/install-deps.sh
|
- run: ./hack/ci/install-linux-deps.sh
|
||||||
- run: ./hack/kernel/build.sh
|
- run: ./hack/kernel/build.sh
|
||||||
env:
|
env:
|
||||||
KRATA_KERNEL_BUILD_JOBS: "5"
|
KRATA_KERNEL_BUILD_JOBS: "5"
|
||||||
|
2
.github/workflows/nightly.yml
vendored
2
.github/workflows/nightly.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
|||||||
- uses: dtolnay/rust-toolchain@stable
|
- uses: dtolnay/rust-toolchain@stable
|
||||||
with:
|
with:
|
||||||
targets: "${{ matrix.arch }}-unknown-linux-gnu,${{ matrix.arch }}-unknown-linux-musl"
|
targets: "${{ matrix.arch }}-unknown-linux-gnu,${{ matrix.arch }}-unknown-linux-musl"
|
||||||
- run: ./hack/ci/install-deps.sh
|
- run: ./hack/ci/install-linux-deps.sh
|
||||||
- run: ./hack/dist/bundle.sh
|
- run: ./hack/dist/bundle.sh
|
||||||
env:
|
env:
|
||||||
KRATA_KERNEL_BUILD_JOBS: "5"
|
KRATA_KERNEL_BUILD_JOBS: "5"
|
||||||
|
2
.github/workflows/os.yml
vendored
2
.github/workflows/os.yml
vendored
@ -26,7 +26,7 @@ jobs:
|
|||||||
- uses: dtolnay/rust-toolchain@stable
|
- uses: dtolnay/rust-toolchain@stable
|
||||||
with:
|
with:
|
||||||
targets: "${{ matrix.arch }}-unknown-linux-gnu,${{ matrix.arch }}-unknown-linux-musl"
|
targets: "${{ matrix.arch }}-unknown-linux-gnu,${{ matrix.arch }}-unknown-linux-musl"
|
||||||
- run: ./hack/ci/install-deps.sh
|
- run: ./hack/ci/install-linux-deps.sh
|
||||||
- run: ./hack/os/build.sh
|
- run: ./hack/os/build.sh
|
||||||
env:
|
env:
|
||||||
KRATA_KERNEL_BUILD_JOBS: "5"
|
KRATA_KERNEL_BUILD_JOBS: "5"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
winget install protobuf
|
choco install protoc
|
||||||
|
Loading…
Reference in New Issue
Block a user