Skip to content

Commit

Permalink
Fix cross caller
Browse files Browse the repository at this point in the history
  • Loading branch information
owent committed Jun 10, 2024
1 parent b5223b6 commit e52dc01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-on-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ jobs:
- name: Set Rust toolchain override
run: rustup override set ${{ steps.toolchain.outputs.name }}
- name: Cross-compilation (test release)
run: cargo cross build -p ddns-cli --release --target ${{ matrix.target }}
run: cross build -p ddns-cli --release --target ${{ matrix.target }}
- name: Cross-compilation (test release)
if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
run: cargo cross test --release --verbose --target ${{ matrix.target }} --bin ddns-cli
run: cross test --release --verbose --target ${{ matrix.target }} --bin ddns-cli
- name: Prepare package
shell: bash
if: ${{ github.ref_type == 'tag' }}
Expand Down

0 comments on commit e52dc01

Please sign in to comment.