Skip to content

Instantly share code, notes, and snippets.

@ckaznable
Forked from Tehnix/CI.yml
Last active February 28, 2023 05:26
Show Gist options
  • Save ckaznable/35a98a5be7c1f421522aa3c05909d199 to your computer and use it in GitHub Desktop.
Save ckaznable/35a98a5be7c1f421522aa3c05909d199 to your computer and use it in GitHub Desktop.
Ready to use Github workflow for cross-compiling a rust binary to many Linux architectures.
name: CI
on:
pull_request:
paths:
- 'src/**'
- 'Cargo.*'
- '.github/workflows/**'
push:
branches:
- master
tags:
- 'v*.*.*'
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
build: [stable, beta, nightly]
include:
- build: nightly
benches: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.build || 'stable' }}
- name: Build debug
run: cargo build
- name: Test
run: cargo test --all-features
- name: Test all benches
if: matrix.benches
run: cargo test --benches --all-features
deploy-linux:
name: deploy-${{ matrix.target }}
permissions:
contents: write
needs: [test]
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
target: [aarch64-unknown-linux-gnu, armv7-unknown-linux-gnueabihf, i686-unknown-linux-gnu, i686-unknown-linux-musl, mips-unknown-linux-gnu, mips64-unknown-linux-gnuabi64, mips64el-unknown-linux-gnuabi64, mipsel-unknown-linux-gnu, powerpc-unknown-linux-gnu, powerpc64-unknown-linux-gnu, powerpc64le-unknown-linux-gnu, arm-unknown-linux-gnueabi ,x86_64-unknown-linux-gnu ,x86_64-unknown-linux-musl]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Install Cross
run: cargo install cross
- name: Build target
run: cross build --release --locked --target ${{ matrix.target }}
- name: Package
shell: bash
run: |
#strip target/${{ matrix.target }}/release/testfile
cd target/${{ matrix.target }}/release
tar czvf ../../../testfile-${{ matrix.target }}.tar.gz testfile
cd -
- name: Publish
uses: softprops/action-gh-release@v1
with:
files: 'testfile*'
deploy-macos:
name: deploy-${{ matrix.target }}
permissions:
contents: write
needs: [test]
if: startsWith(github.ref, 'refs/tags/')
runs-on: macos-latest
strategy:
matrix:
target: [x86_64-apple-darwin, aarch64-apple-darwin]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- run: rustup target add aarch64-apple-darwin
if: matrix.target == 'aarch64-apple-darwin'
- name: Build target
run: cargo build --release --target ${{ matrix.target }}
- name: Package
shell: bash
run: |
#strip target/${{ matrix.target }}/release/testfile
cd target/${{ matrix.target }}/release
tar czvf ../../../testfile-${{ matrix.target }}.tar.gz testfile
cd -
- name: Publish
uses: softprops/action-gh-release@v1
with:
files: 'testfile*'
deploy-windows:
name: deploy-${{ matrix.target }}
permissions:
contents: write
needs: [test]
if: startsWith(github.ref, 'refs/tags/')
runs-on: windows-latest
strategy:
matrix:
target: [x86_64-pc-windows-msvc]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Build target
run: cargo build --release --target ${{ matrix.target }}
- name: Package
shell: bash
run: |
#strip target/${{ matrix.target }}/release/testfile
cd target/${{ matrix.target }}/release
tar czvf ../../../testfile-${{ matrix.target }}.tar.gz testfile
cd -
- name: Publish
uses: softprops/action-gh-release@v1
with:
files: 'testfile*'
@ckaznable
Copy link
Author

2023-2-10

Replace actions-rs action to dtolnay/rust-toolchain

@ckaznable
Copy link
Author

ckaznable commented Feb 28, 2023

2023-2-28

use cargo install cross to cross build target

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment