Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuka committed Nov 17, 2024
1 parent 5cce8eb commit 6206a5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
components: rustfmt, clippy

- name: Run test
run: cargo test --target "${{ matrix.platform.target }}" --features "${{ matrix.features }},extension"
run: cargo test --target "${{ matrix.platform.target }}" --features "${{ matrix.features }}"
2 changes: 1 addition & 1 deletion .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
components: rustfmt, clippy

- name: Run check
run: cargo check --features "${{ matrix.features }},extension"
run: cargo check --features "${{ matrix.features }}"

test:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
uses: microsoft/setup-msbuild@v2

- name: Compile
run: cargo build --release --features=${{ matrix.features }},extension --target=${{ matrix.platform.target }} --target-dir=target/${{ matrix.platform.target }}
run: cargo build --release --features=${{ matrix.features }} --target=${{ matrix.platform.target }} --target-dir=target/${{ matrix.features }}

- name: Create artifact for Linux
if: matrix.platform.runner == 'ubuntu-latest'
Expand Down

0 comments on commit 6206a5e

Please sign in to comment.