mirror of
https://github.com/roapi/roapi.git
synced 2026-06-11 21:00:56 +08:00
88 lines
2.3 KiB
YAML
88 lines
2.3 KiB
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
env:
|
|
# NOTE: this env is also defined in roapi_http_release.yml and columnq_cli_release.yml
|
|
RUST_TC_NIGHTLY_VER: "2021-07-17"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/.cargo/bin/
|
|
~/.cargo/registry/index/
|
|
~/.cargo/registry/cache/
|
|
~/.cargo/git/db/
|
|
target/
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml') }}
|
|
${{ runner.os }}-cargo-
|
|
- name: Install minimal stable with clippy and rustfmt
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: default
|
|
toolchain: stable
|
|
override: true
|
|
- name: Check
|
|
run: cargo clippy
|
|
- name: Build
|
|
run: cargo build
|
|
- name: Run tests
|
|
run: cargo test
|
|
- name: Trim cache
|
|
run: |
|
|
cargo install cargo-cache
|
|
cargo cache trim -l 1G
|
|
|
|
simd_test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/.cargo/bin/
|
|
~/.cargo/registry/index/
|
|
~/.cargo/registry/cache/
|
|
~/.cargo/git/db/
|
|
target/
|
|
key: simd-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml') }}
|
|
restore-keys: |
|
|
simd-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock', '**/Cargo.toml') }}
|
|
simd-${{ runner.os }}-cargo-
|
|
- name: Install nightly rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: default
|
|
# toolchain: nightly
|
|
toolchain: nightly-${{ env.RUST_TC_NIGHTLY_VER }}
|
|
override: true
|
|
- name: Run tests
|
|
run: cargo test --features simd
|
|
- name: Trim cache
|
|
run: |
|
|
cargo install cargo-cache
|
|
cargo cache trim -l 1G
|
|
|
|
docker_build:
|
|
name: Docker Image Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build Docker image
|
|
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
|
|
with:
|
|
context: .
|
|
push: false
|
|
tags: latest
|