CI: Remove cross-compiling release targets

GitHub doesn't provide any ARM runners, and we can't cross-compile
without a compatible libpcsclite-dev. Until we can work that out, we'll
just build for direct targets.
This commit is contained in:
Jack Grigg
2021-04-11 18:16:48 +12:00
parent 43024048a2
commit 3bb90e0fcb
+1 -27
View File
@@ -17,7 +17,7 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
name: [linux, armv7, arm64, windows, macos] name: [linux, windows, macos]
include: include:
- name: linux - name: linux
os: ubuntu-latest os: ubuntu-latest
@@ -26,32 +26,6 @@ jobs:
archive_name: age-plugin-yubikey.tar.gz archive_name: age-plugin-yubikey.tar.gz
asset_suffix: x86_64-linux.tar.gz asset_suffix: x86_64-linux.tar.gz
- name: armv7
os: ubuntu-latest
target: armv7-unknown-linux-gnueabihf
build_deps: >
gcc-arm-linux-gnueabihf
libpcsclite-dev
cargo_config: |
[target.armv7-unknown-linux-gnueabihf]
linker = "arm-linux-gnueabihf-gcc"
build_flags: --target armv7-unknown-linux-gnueabihf
archive_name: age-plugin-yubikey.tar.gz
asset_suffix: armv7-linux.tar.gz
- name: arm64
os: ubuntu-latest
target: aarch64-unknown-linux-gnu
build_deps: >
gcc-aarch64-linux-gnu
libpcsclite-dev
cargo_config: |
[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"
build_flags: --target aarch64-unknown-linux-gnu
archive_name: age-plugin-yubikey.tar.gz
asset_suffix: arm64-linux.tar.gz
- name: windows - name: windows
os: windows-latest os: windows-latest
archive_name: age-plugin-yubikey.zip archive_name: age-plugin-yubikey.zip