Skip to content

CD

CD #68

Workflow file for this run

name: CD
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
deploy:
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
- os: ubuntu-latest
target: aarch64-unknown-linux-musl
- os: windows-latest
target: x86_64-pc-windows-msvc
- os: macOS-latest
target: x86_64-apple-darwin
- os: macOS-latest
target: aarch64-apple-darwin
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Setup musl
if: matrix.os == 'ubuntu-latest'
run: |
rustup target add ${{ matrix.target }}
sudo apt-get update
sudo apt -qq install musl-tools gcc-aarch64-linux-gnu
cli/.cargo
#mkdir -p .cargo
cat << EOS > cli/.cargo/config.toml
[target.aarch64-unknown-linux-musl]
linker = "aarch64-linux-gnu-gcc"
EOS
#cat cli/.cargo/config.toml
- name: Build
run: cargo build --all --release --target ${{ matrix.target }} --verbose
- name: Create an archive to maintain the file permission (in non-Windows environments)
if: matrix.target != 'x86_64-pc-windows-msvc'
run: |
tar -C target/${{ matrix.target }}/release -cvf rrr-${{ matrix.target }}.tar.xz rrr
- name: Create an archive to maintain the file permission (in Windows environments)
if: matrix.target == 'x86_64-pc-windows-msvc'
run: |
powershell Compress-Archive -Path target/${{ matrix.target }}/release/rrr.exe -DestinationPath rrr-${{ matrix.target }}.zip
- name: Upload artifacts (in non-Windows environments)
if: matrix.target != 'x86_64-pc-windows-msvc'
uses: actions/upload-artifact@v3
with:
name: rrr-${{ matrix.target }}
path: rrr-${{ matrix.target }}.tar.xz
- name: Upload artifacts (in Windows environments)
if: matrix.target == 'x86_64-pc-windows-msvc'
uses: actions/upload-artifact@v3
with:
name: rrr-${{ matrix.target }}
path: rrr-${{ matrix.target }}.zip