diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6baf36a..36deff1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -52,21 +52,7 @@ jobs: - target: x86_64-apple-darwin os: macos-latest - command: cargo - - - target: aarch64-unknown-linux-gnu - os: ubuntu-latest - command: cross - - - target: aarch64-apple-darwin - os: macos-latest - command: cross - - - target: x86_64-pc-windows-gnu - os: windows-latest - command: cargo - - + command: cargo runs-on: ${{ matrix.os }} steps: diff --git a/Cargo.toml b/Cargo.toml index e45cea3..b762f00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,26 +11,6 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -[target.aarch64-unknown-linux-gnu] - -pre-build = [ - "dpkg --add-architecture $CROSS_DEB_ARCH", - "apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH" -] - -[target.aarch64-apple-darwin] - -pre-build = [ - "dpkg --add-architecture $CROSS_DEB_ARCH", - "apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH" -] - -[target.x86_64-windows-gnu] - -pre-build = [ - "dpkg --add-architecture $CROSS_DEB_ARCH", - "apt-get update && apt-get --assume-yes install libssl-dev:$CROSS_DEB_ARCH" -]