Skip to content

Next improvement step #110

Next improvement step

Next improvement step #110

Workflow file for this run

name: "Build"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- '*'
- '!ci_test_*'
tags-ignore:
- '*'
pull_request:
branches:
- '*'
- '!ci_test_*'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: rustup target add aarch64-unknown-linux-gnu x86_64-unknown-linux-gnu i686-unknown-linux-gnu powerpc-unknown-linux-gnu
- run: cargo build --target aarch64-unknown-linux-gnu --manifest-path ./src/lib/Cargo.toml
- run: cargo build --target x86_64-unknown-linux-gnu --manifest-path ./src/lib/Cargo.toml
- run: cargo build --target i686-unknown-linux-gnu --manifest-path ./src/lib/Cargo.toml
- run: cargo build --target powerpc-unknown-linux-gnu --manifest-path ./src/lib/Cargo.toml
- name: Test release pipeline
run: cargo publish --dry-run --manifest-path src/lib/Cargo.toml