You've already forked authenticator-rs
mirror of
https://github.com/librekeys/authenticator-rs.git
synced 2026-04-14 08:47:57 -07:00
663408ee0f
Also line ending in run_cross.sh
12 lines
424 B
Bash
Executable File
12 lines
424 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
pushd testing/cross/
|
|
docker build -t local_cross:x86_64-unknown-linux-gnu -f x86_64-unknown-linux-gnu.Dockerfile .
|
|
docker build -t local_cross:powerpc64le-unknown-linux-gnu -f powerpc64le-unknown-linux-gnu.Dockerfile .
|
|
popd
|
|
|
|
cross test --target x86_64-unknown-linux-gnu
|
|
cross build --target x86_64-unknown-netbsd
|
|
cross build --target powerpc64le-unknown-linux-gnu
|
|
cross build --target x86_64-pc-windows-gnu
|