2020-02-18 02:48:32 -08:00
|
|
|
name: Build
|
2020-01-15 02:16:13 -08:00
|
|
|
|
2020-03-13 21:20:41 -07:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2020-03-18 09:13:42 -07:00
|
|
|
tags:
|
|
|
|
- v*.*.*
|
2020-03-13 21:20:41 -07:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
2020-01-15 02:16:13 -08:00
|
|
|
|
|
|
|
jobs:
|
2020-02-18 02:48:32 -08:00
|
|
|
all:
|
2020-03-13 21:20:41 -07:00
|
|
|
name: All
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-25 19:58:32 -08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- macos-latest
|
|
|
|
- ubuntu-latest
|
|
|
|
- windows-latest
|
2020-01-28 02:19:24 -08:00
|
|
|
include:
|
|
|
|
- os: ubuntu-latest
|
|
|
|
target: x86_64-unknown-linux-musl
|
|
|
|
- os: macos-latest
|
|
|
|
target: x86_64-apple-darwin
|
|
|
|
- os: windows-latest
|
|
|
|
target: x86_64-pc-windows-msvc
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-25 19:58:32 -08:00
|
|
|
runs-on: ${{matrix.os}}
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-15 02:16:13 -08:00
|
|
|
steps:
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-15 02:16:13 -08:00
|
|
|
- uses: actions/checkout@v1
|
2020-03-30 23:39:30 -07:00
|
|
|
|
|
|
|
- name: Cache cargo registry
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.cargo/registry
|
|
|
|
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
|
|
|
- name: Cache cargo index
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.cargo/git
|
|
|
|
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
|
|
|
- name: Cache cargo build
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: target
|
|
|
|
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
2020-02-10 20:07:06 -08:00
|
|
|
- name: Install Main Toolchain
|
2020-01-15 02:16:13 -08:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
2020-01-28 02:19:24 -08:00
|
|
|
target: ${{ matrix.target }}
|
2020-01-15 02:16:13 -08:00
|
|
|
profile: minimal
|
|
|
|
components: clippy, rustfmt
|
|
|
|
override: true
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-15 02:16:13 -08:00
|
|
|
- name: Version
|
|
|
|
run: |
|
|
|
|
rustup --version
|
|
|
|
cargo --version
|
|
|
|
cargo clippy --version
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-25 19:58:32 -08:00
|
|
|
- name: Build
|
|
|
|
run: cargo build --all --verbose
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-25 19:58:32 -08:00
|
|
|
- name: Test
|
|
|
|
run: cargo test --all --verbose
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-15 02:30:24 -08:00
|
|
|
- name: Clippy
|
2020-01-25 19:58:32 -08:00
|
|
|
run: cargo clippy --all
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-15 02:30:24 -08:00
|
|
|
- name: Lint
|
2020-01-25 19:58:32 -08:00
|
|
|
if: matrix.os != 'windows-latest'
|
2020-01-15 02:30:24 -08:00
|
|
|
run: cargo run lint
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-02-10 20:07:06 -08:00
|
|
|
- name: Install Rustfmt Toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
target: ${{ matrix.target }}
|
|
|
|
profile: minimal
|
|
|
|
components: rustfmt
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-15 02:16:13 -08:00
|
|
|
- name: Format
|
2020-02-10 20:07:06 -08:00
|
|
|
run: cargo +nightly fmt --all -- --check
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-15 02:16:13 -08:00
|
|
|
- name: Completion Scripts
|
2020-01-25 19:58:32 -08:00
|
|
|
if: matrix.os != 'windows-latest'
|
2020-01-15 02:16:13 -08:00
|
|
|
run: |
|
2020-03-13 22:19:43 -07:00
|
|
|
./bin/generate-completions
|
2020-01-15 02:16:13 -08:00
|
|
|
git diff --no-ext-diff --quiet --exit-code
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-28 02:19:24 -08:00
|
|
|
- name: Package
|
|
|
|
id: package
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
|
|
run: ./bin/package ${{github.ref}} ${{matrix.os}} ${{ matrix.target }}
|
|
|
|
shell: bash
|
2020-03-30 23:39:30 -07:00
|
|
|
|
2020-01-28 02:19:24 -08:00
|
|
|
- name: Publish
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
|
|
with:
|
|
|
|
draft: false
|
|
|
|
files: ${{ steps.package.outputs.archive }}
|
|
|
|
prerelease: false
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|