Skip to content

Commit 88fd134

Browse files
committed
Fix CI
1 parent 35ccb3b commit 88fd134

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
components: llvm-tools-preview
4242

4343
- name: Build crates
44-
run: cargo build -p acpi -p aml --target $TARGET
44+
run: cargo build --target $TARGET
4545

4646
test:
4747
runs-on: ubuntu-latest
@@ -60,7 +60,7 @@ jobs:
6060
run: sudo apt-get install -y acpica-tools
6161

6262
- name: Run tests
63-
run: cargo test --all
63+
run: cargo test
6464

6565
- name: Run AML test suite
6666
run: cargo run_tests -p tests
@@ -79,14 +79,8 @@ jobs:
7979
profile: minimal
8080
components: clippy
8181

82-
- name: Run clippy (ACPI)
83-
run: cargo clippy -p acpi
82+
- name: Run clippy
83+
run: cargo clippy
8484

85-
- name: Run clippy (ACPI tests)
86-
run: cargo clippy -p acpi --tests
87-
88-
- name: Run clippy (AML)
89-
run: cargo clippy -p aml
90-
91-
- name: Run clippy (AML tests)
92-
run: cargo clippy -p aml --tests
85+
- name: Run clippy (tests)
86+
run: cargo clippy --tests

0 commit comments

Comments
 (0)