Skip to content

devel

devel #1234

Workflow file for this run

name: devel
on:
pull_request:
push:
branches:
- master
- staging
- trying
schedule:
- cron: '30 02 * * *' # Every day at 01:30 UTC
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
env:
CARGO_BIN: cargo
# When CARGO_BIN is set to CROSS, this is set to `--target matrix.target`
TARGET_FLAGS: ""
# When CARGO_BIN is set to CROSS, TARGET_DIR includes matrix.target
TARGET_DIR: ./target
# Emit backtraces on panics
RUST_BACKTRACE: 1
# Skip tests
SKIP_TESTS: ""
strategy:
matrix:
build:
- pinned
- stable
- beta
- linux-musl
- linux-musl-arm64
- linux-musl-i686
- linux-gnu
- linux-gnu-arm64
- linux-gnu-i686
- linux-arm-gnueabihf
- macos
- macos-arm64
include:
# Specific Rust channels
- build: pinned
os: ubuntu-22.04
rust: 1.70.0
- build: stable
os: ubuntu-22.04
rust: stable
- build: beta
os: ubuntu-22.04
rust: beta
# Our release builds are generated by a nightly compiler to take
# advantage of the latest optimizations/compile time improvements.
- build: linux-musl
os: ubuntu-22.04
rust: stable
target: x86_64-unknown-linux-musl
- build: linux-musl-i686
os: ubuntu-22.04
rust: stable
target: i686-unknown-linux-musl
- build: linux-musl-arm64
os: ubuntu-22.04
rust: stable
target: aarch64-unknown-linux-musl
- build: linux-gnu
os: ubuntu-22.04
rust: stable
target: x86_64-unknown-linux-gnu
- build: linux-gnu-i686
os: ubuntu-22.04
rust: stable
target: i686-unknown-linux-gnu
- build: linux-gnu-arm64
os: ubuntu-22.04
rust: stable
target: aarch64-unknown-linux-gnu
- build: linux-arm-gnueabihf
os: ubuntu-22.04
rust: stable
target: arm-unknown-linux-gnueabihf
- build: macos
os: macos-12
rust: stable
target: x86_64-apple-darwin
- build: macos-arm64
os: macos-12
rust: stable
target: aarch64-apple-darwin
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
- name: Set up Cross
if: ${{ matrix.target != '' }}
shell: bash
run: |
cargo install cross@^0.2
echo "CARGO_BIN=cross" >> $GITHUB_ENV
- name: Setup Cargo
shell: bash
run: |
if [[ "${{ matrix.target }}" != "" ]]; then
echo "TARGET_FLAGS=--target=${{ matrix.target }}" >> $GITHUB_ENV
echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV
fi
echo "cargo command is: ${{ env.CARGO_BIN }}"
echo "target flag is: ${{ env.TARGET_FLAGS }}"
echo "target dir is: ${{ env.TARGET_DIR }}"
- name: Cache cargo registry and git trees
uses: Swatinem/rust-cache@v1
- name: Show command used for Cargo
run: |
echo "cargo command is: ${{ env.CARGO_BIN }}"
echo "target flag is: ${{ env.TARGET_FLAGS }}"
echo "target dir is: ${{ env.TARGET_DIR }}"
- name: aarch64 specific items
if: matrix.build == 'macos-arm64'
run: |
# Can't run tests: cross-compiling
echo "SKIP_TESTS=--no-run" >> $GITHUB_ENV
- name: Run tests
run: |
${{ env.CARGO_BIN }} test --verbose ${{ env.TARGET_FLAGS }} ${{ env.SKIP_TESTS }}
- name: Run build
run: |
${{ env.CARGO_BIN }} rustc --bin paket --verbose ${{ env.TARGET_FLAGS }}
checks:
name: checks
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy
- name: Check formatting
run: |
cargo fmt --all -- --check
- name: Check via Clippy
run: |
cargo clippy --all-features -- -D warnings