Merge pull request #95 from FrederickBun/patch-2 #108
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 | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- "docker-compose.yaml" | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- target: x86_64-unknown-linux-gnu | |
docker: linux/amd64 | |
cross: false | |
binary: naive | |
- target: aarch64-unknown-linux-gnu | |
docker: linux/arm64 | |
cross: true | |
binary: naive | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup cargo cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
key: ${{ runner.os }}-${{ matrix.target }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.target }}-cargo- | |
- name: install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: ${{ matrix.target }} | |
override: true | |
- name: compile | |
uses: actions-rs/cargo@v1 | |
with: | |
use-cross: ${{ matrix.cross }} | |
command: build | |
args: --release --target=${{ matrix.target }} | |
- name: move target | |
run: | | |
mkdir -p action-release/${{ matrix.docker }}/ | |
mv target/${{ matrix.target }}/release/${{ matrix.binary }} action-release/${{ matrix.docker }}/ | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: action-release/ |