ci: Fix GH workflows with new crate names

Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
pull/528/head
Dave Tucker 7 months ago
parent f81d320142
commit 5c6736b781

@ -55,7 +55,7 @@ jobs:
run: | run: |
set -euxo pipefail set -euxo pipefail
cargo hack miri test --all-targets --feature-powerset \ cargo hack miri test --all-targets --feature-powerset \
--exclude aya-bpf \ --exclude aya-ebpf \
--exclude aya-ebpf-bindings \ --exclude aya-ebpf-bindings \
--exclude aya-log-ebpf \ --exclude aya-log-ebpf \
--exclude integration-ebpf \ --exclude integration-ebpf \
@ -92,7 +92,7 @@ jobs:
run: | run: |
set -euxo pipefail set -euxo pipefail
cargo hack build --all-targets --feature-powerset \ cargo hack build --all-targets --feature-powerset \
--exclude aya-bpf \ --exclude aya-ebpf \
--exclude aya-ebpf-bindings \ --exclude aya-ebpf-bindings \
--exclude aya-log-ebpf \ --exclude aya-log-ebpf \
--exclude integration-ebpf \ --exclude integration-ebpf \
@ -104,7 +104,7 @@ jobs:
run: | run: |
set -euxo pipefail set -euxo pipefail
cargo hack test --all-targets --feature-powerset \ cargo hack test --all-targets --feature-powerset \
--exclude aya-bpf \ --exclude aya-ebpf \
--exclude aya-ebpf-bindings \ --exclude aya-ebpf-bindings \
--exclude aya-log-ebpf \ --exclude aya-log-ebpf \
--exclude integration-ebpf \ --exclude integration-ebpf \
@ -117,7 +117,7 @@ jobs:
run: | run: |
set -euxo pipefail set -euxo pipefail
cargo hack test --doc --feature-powerset \ cargo hack test --doc --feature-powerset \
--exclude aya-bpf \ --exclude aya-ebpf \
--exclude aya-ebpf-bindings \ --exclude aya-ebpf-bindings \
--exclude aya-log-ebpf \ --exclude aya-log-ebpf \
--exclude init \ --exclude init \
@ -125,7 +125,7 @@ jobs:
--exclude integration-test \ --exclude integration-test \
--workspace --workspace
build-test-aya-bpf: build-test-aya-ebpf:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -158,7 +158,7 @@ jobs:
CARGO_CFG_BPF_TARGET_ARCH: ${{ matrix.arch }} CARGO_CFG_BPF_TARGET_ARCH: ${{ matrix.arch }}
run: | run: |
set -euxo pipefail set -euxo pipefail
cargo hack build --package aya-bpf --package aya-log-ebpf \ cargo hack build --package aya-ebpf --package aya-log-ebpf \
--feature-powerset \ --feature-powerset \
--target ${{ matrix.target }} \ --target ${{ matrix.target }} \
-Z build-std=core -Z build-std=core
@ -170,7 +170,7 @@ jobs:
run: | run: |
set -euxo pipefail set -euxo pipefail
cargo hack test --doc \ cargo hack test --doc \
--package aya-bpf \ --package aya-ebpf \
--package aya-log-ebpf \ --package aya-log-ebpf \
--feature-powerset --feature-powerset
@ -305,7 +305,7 @@ jobs:
needs: needs:
- lint - lint
- build-test-aya - build-test-aya
- build-test-aya-bpf - build-test-aya-ebpf
- run-integration-test - run-integration-test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

Loading…
Cancel
Save