nod-rs/.github/workflows/build.yaml

216 lines
6.1 KiB
YAML
Raw Normal View History

2022-02-03 07:00:36 +00:00
name: Build
2021-08-23 13:48:35 +00:00
2024-09-08 22:29:48 +00:00
on:
pull_request:
push:
paths-ignore:
- '*.md'
- 'LICENSE*'
workflow_dispatch:
2021-08-23 13:48:35 +00:00
2024-02-02 23:17:35 +00:00
env:
BUILD_PROFILE: release-lto
CARGO_TARGET_DIR: target
2024-09-11 05:19:19 +00:00
CARGO_INCREMENTAL: 0
2024-02-02 23:17:35 +00:00
2021-08-23 13:48:35 +00:00
jobs:
2022-02-03 07:00:36 +00:00
check:
name: Check
runs-on: ubuntu-latest
2021-08-23 13:48:35 +00:00
strategy:
matrix:
2024-09-11 05:19:19 +00:00
toolchain: [ stable, 1.74.0, nightly ]
2024-02-02 23:29:11 +00:00
fail-fast: false
env:
RUSTFLAGS: -D warnings
2021-08-23 13:48:35 +00:00
steps:
2024-02-02 23:17:35 +00:00
- name: Checkout
2024-02-23 06:49:28 +00:00
uses: actions/checkout@v4
2024-02-02 23:17:35 +00:00
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@master
2021-08-23 13:48:35 +00:00
with:
toolchain: ${{ matrix.toolchain }}
2022-02-03 07:36:41 +00:00
components: rustfmt, clippy
2024-02-02 23:17:35 +00:00
- name: Cargo check
run: cargo check --all-features --all-targets
- name: Cargo clippy
run: cargo clippy --all-features --all-targets
fmt:
name: Format
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
steps:
- name: Checkout
2024-02-23 06:49:28 +00:00
uses: actions/checkout@v4
2024-02-02 23:17:35 +00:00
- name: Setup Rust toolchain
# We use nightly options in rustfmt.toml
uses: dtolnay/rust-toolchain@nightly
with:
2024-02-02 23:17:35 +00:00
components: rustfmt
- name: Cargo fmt
run: cargo fmt --all --check
deny:
name: Deny
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans licenses sources
2024-02-02 23:29:11 +00:00
fail-fast: false
2024-02-02 23:17:35 +00:00
# Prevent new advisories from failing CI
continue-on-error: ${{ matrix.checks == 'advisories' }}
steps:
2024-02-23 06:49:28 +00:00
- uses: actions/checkout@v4
2024-02-02 23:17:35 +00:00
- uses: EmbarkStudios/cargo-deny-action@v1
2022-02-03 07:36:41 +00:00
with:
2024-02-02 23:17:35 +00:00
command: check ${{ matrix.checks }}
test:
name: Test
strategy:
matrix:
platform: [ ubuntu-latest, windows-latest, macos-latest ]
fail-fast: false
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
2024-02-23 06:49:28 +00:00
uses: actions/checkout@v4
2024-02-02 23:17:35 +00:00
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cargo test
2024-02-02 23:29:11 +00:00
run: cargo test --release
2022-02-03 07:00:36 +00:00
build:
2024-09-08 22:29:48 +00:00
name: Build nodtool
env:
CARGO_BIN_NAME: nodtool
2022-02-03 07:00:36 +00:00
strategy:
matrix:
2024-02-02 23:17:35 +00:00
include:
- platform: ubuntu-latest
target: x86_64-unknown-linux-musl
name: linux-x86_64
build: zigbuild
features: asm
2024-09-08 22:29:48 +00:00
- platform: ubuntu-latest
target: i686-unknown-linux-musl
name: linux-i686
build: zigbuild
features: asm
2024-02-02 23:17:35 +00:00
- platform: ubuntu-latest
target: aarch64-unknown-linux-musl
name: linux-aarch64
build: zigbuild
features: nightly
2024-09-08 22:29:48 +00:00
- platform: windows-latest
target: i686-pc-windows-msvc
name: windows-x86
build: build
features: default
2024-02-02 23:17:35 +00:00
- platform: windows-latest
target: x86_64-pc-windows-msvc
name: windows-x86_64
build: build
2024-02-02 23:29:11 +00:00
features: default
2024-02-02 23:17:35 +00:00
- platform: windows-latest
target: aarch64-pc-windows-msvc
name: windows-arm64
build: build
features: nightly
- platform: macos-latest
target: x86_64-apple-darwin
name: macos-x86_64
build: build
features: asm
- platform: macos-latest
target: aarch64-apple-darwin
name: macos-arm64
build: build
features: nightly
2022-02-03 07:00:36 +00:00
fail-fast: false
runs-on: ${{ matrix.platform }}
steps:
2024-02-02 23:17:35 +00:00
- name: Checkout
2024-02-23 06:49:28 +00:00
uses: actions/checkout@v4
2024-02-02 23:17:35 +00:00
- name: Install dependencies
if: matrix.packages != ''
run: |
sudo apt-get -y update
sudo apt-get -y install ${{ matrix.packages }}
- name: Install cargo-zigbuild
if: matrix.build == 'zigbuild'
2024-09-08 22:29:48 +00:00
run: pip install ziglang==0.13.0 cargo-zigbuild==0.19.1
2024-02-02 23:17:35 +00:00
- name: Setup Rust toolchain
2024-09-08 22:29:48 +00:00
uses: dtolnay/rust-toolchain@stable
2022-02-03 07:00:36 +00:00
with:
2024-02-02 23:17:35 +00:00
targets: ${{ matrix.target }}
- name: Cargo build
2024-09-08 22:29:48 +00:00
run: >
cargo ${{ matrix.build }} --profile ${{ env.BUILD_PROFILE }} --target ${{ matrix.target }}
--bin ${{ env.CARGO_BIN_NAME }} --features ${{ matrix.features }}
2024-02-02 23:17:35 +00:00
- name: Upload artifacts
2024-02-23 06:49:28 +00:00
uses: actions/upload-artifact@v4
with:
2024-09-08 22:29:48 +00:00
name: ${{ env.CARGO_BIN_NAME }}-${{ matrix.name }}
2024-02-02 23:17:35 +00:00
path: |
${{ env.CARGO_TARGET_DIR }}/${{ matrix.target }}/${{ env.BUILD_PROFILE }}/${{ env.CARGO_BIN_NAME }}
${{ env.CARGO_TARGET_DIR }}/${{ matrix.target }}/${{ env.BUILD_PROFILE }}/${{ env.CARGO_BIN_NAME }}.exe
if-no-files-found: error
release:
name: Release
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs: [ build ]
steps:
2024-09-08 22:29:48 +00:00
- name: Checkout
uses: actions/checkout@v4
- name: Check git tag against Cargo version
shell: bash
run: |
set -eou pipefail
tag='${{github.ref}}'
tag="${tag#refs/tags/}"
2024-09-11 05:19:19 +00:00
version=$(grep '^version' Cargo.toml | head -1 | awk -F' = ' '{print $2}' | tr -d '"')
version="v$version"
if [ "$tag" != "$version" ]; then
echo "::error::Git tag doesn't match the Cargo version! ($tag != $version)"
exit 1
fi
2024-02-02 23:17:35 +00:00
- name: Download artifacts
2024-02-23 06:49:28 +00:00
uses: actions/download-artifact@v4
2021-08-23 13:48:35 +00:00
with:
2024-02-02 23:17:35 +00:00
path: artifacts
- name: Rename artifacts
working-directory: artifacts
run: |
2024-09-08 22:29:48 +00:00
set -euo pipefail
2024-02-02 23:17:35 +00:00
mkdir ../out
2024-09-08 22:29:48 +00:00
for dir in */; do
for file in "$dir"*; do
base=$(basename "$file")
name="${base%.*}"
ext="${base##*.}"
if [ "$ext" = "$base" ]; then
ext=""
else
ext=".$ext"
fi
arch="${dir%/}" # remove trailing slash
arch="${arch##"$name-"}" # remove bin name
dst="../out/${name}-${arch}${ext}"
mv "$file" "$dst"
done
2024-02-02 23:17:35 +00:00
done
ls -R ../out
- name: Release
2024-09-08 22:29:48 +00:00
uses: softprops/action-gh-release@v2
2021-08-23 13:48:35 +00:00
with:
2024-02-02 23:17:35 +00:00
files: out/*
2024-09-11 05:19:19 +00:00
draft: true
generate_release_notes: true