Skip to content

trying to configure cross compilation in docker #43

trying to configure cross compilation in docker

trying to configure cross compilation in docker #43

# on:
# pull_request:
# types: [opened, reopened, synchronize]
# jobs:
# release:
# name: Release - ${{ matrix.platform.os-name }}
# strategy:
# matrix:
# platform:
# - os-name: FreeBSD-x86_64
# runs-on: ubuntu-20.04
# target: x86_64-unknown-freebsd
# skip_tests: true
# - os-name: Linux-x86_64
# runs-on: ubuntu-20.04
# target: x86_64-unknown-linux-musl
# - os-name: Linux-aarch64
# runs-on: ubuntu-20.04
# target: aarch64-unknown-linux-musl
# - os-name: Linux-riscv64
# runs-on: ubuntu-20.04
# target: riscv64gc-unknown-linux-gnu
# - os-name: Windows-x86_64
# runs-on: windows-latest
# target: x86_64-pc-windows-msvc
# - os-name: macOS-x86_64
# runs-on: macOS-latest
# target: x86_64-apple-darwin
# # more targets here ...
# runs-on: ${{ matrix.platform.runs-on }}
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Build binary
# uses: houseabsolute/actions-rust-cross@v0
# with:
# command: ${{ matrix.platform.command }}
# target: ${{ matrix.platform.target }}
# args: "--locked --release"
# strip: true
# - name: Publish artifacts and release
# uses: houseabsolute/actions-rust-release@v0
# with:
# executable-name: ubi
# target: ${{ matrix.platform.target }}