Skip to content

build(deps): bump actions/upload-artifact from 4.4.0 to 4.4.3 #681

build(deps): bump actions/upload-artifact from 4.4.0 to 4.4.3

build(deps): bump actions/upload-artifact from 4.4.0 to 4.4.3 #681

Workflow file for this run

name: cross
on:
pull_request: {}
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
TRIPLE: unknown-linux-gnu
jobs:
build:
strategy:
fail-fast: false
matrix:
arch:
- x86_64
- i686
- aarch64
- powerpc64le
- s390x
name: ${{matrix.arch}}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cross-${{matrix.arch}}-${{ hashFiles('**/Cargo.lock') }}
- name: Install cross-rs
run: |
cargo install cross --git https://github.com/cross-rs/cross
cross --version
- name: Ensure the latest base image
run: docker pull ghcr.io/cross-rs/${{matrix.arch}}-$TRIPLE:main
- name: Build for ${{matrix.arch}}
run: cross build -v --target ${{matrix.arch}}-$TRIPLE