Cross Compilation: add a sv2-rpi.sh
script to generate tarball distributions for Raspberry Pi OS
#6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cross Compile Check | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
pull_request_review: | |
types: [submitted] | |
branches: [bot/versioning] | |
jobs: | |
cross_compile_64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.70.0 | |
override: true | |
- name: Install cargo-cross | |
run: cargo install cross | |
- name: Cross Compile 64-bit | |
run: | | |
./sv2-rpi.sh jd_client 64 | |
./sv2-rpi.sh jd_server 64 | |
./sv2-rpi.sh mining_proxy_sv2 64 | |
./sv2-rpi.sh pool_sv2 64 | |
./sv2-rpi.sh translator_sv2 64 | |
- name: Check artifacts | |
run: | | |
arch="aarch64-unknown-linux-gnu" | |
bin_dir="target/$arch/release" | |
tar_dir="tar" | |
artifacts=("jd_client" "jd_server" "mining_proxy_sv2" "pool_sv2" "translator_sv2") | |
for file in "${artifacts[@]}"; do | |
bin_path="$bin_dir/$file" | |
if [ ! -e "$bin_path" ]; then | |
echo "Binary file $bin_path does not exist." | |
exit 1 | |
fi | |
tar_path="$tar_dir/$file-$arch.tar.gz" | |
if [ ! -e "$tar_path" ]; then | |
echo "File $tar_path does not exist." | |
exit 1 | |
fi | |
done | |
cross_compile_32: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.70.0 | |
override: true | |
- name: Install cargo-cross | |
run: cargo install cross | |
- name: Cross Compile 32-bit | |
run: | | |
./sv2-rpi.sh jd_client 32 | |
./sv2-rpi.sh jd_server 32 | |
./sv2-rpi.sh mining_proxy_sv2 32 | |
./sv2-rpi.sh pool_sv2 32 | |
./sv2-rpi.sh translator_sv2 32 | |
- name: Check artifacts | |
run: | | |
arch="arm-unknown-linux-gnueabi" | |
bin_dir="target/$arch/release" | |
tar_dir="tar" | |
artifacts=("jd_client" "jd_server" "mining_proxy_sv2" "pool_sv2" "translator_sv2") | |
for file in "${artifacts[@]}"; do | |
bin_path="$bin_dir/$file" | |
if [ ! -e "$bin_path" ]; then | |
echo "Binary file $bin_path does not exist." | |
exit 1 | |
fi | |
tar_path="$tar_dir/$file-$arch.tar.gz" | |
if [ ! -e "$tar_path" ]; then | |
echo "File $tar_path does not exist." | |
exit 1 | |
fi | |
done |