This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
FM-186: Publish docker image #426
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
# Check code formatting; anything that doesn't require compilation. | |
pre-compile-checks: | |
name: Pre-compile checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the project | |
uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
components: rustfmt | |
- name: Check code formatting | |
run: make check-fmt | |
- name: Check license headers | |
run: make license | |
# Test matrix, running tasks from the Makefile. | |
tests: | |
needs: [pre-compile-checks] | |
name: ${{ matrix.make.name }} (${{ matrix.os }}, ${{ matrix.rust }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
rust: [stable, nightly] | |
make: | |
- name: Lint | |
task: lint | |
- name: Test | |
task: test | |
- name: End-to-End | |
task: e2e | |
exclude: | |
- rust: stable | |
make: | |
name: Lint | |
- rust: nightly | |
make: | |
name: End-to-end | |
env: | |
RUST_BACKTRACE: full | |
RUSTFLAGS: -Dwarnings | |
CARGO_INCREMENTAL: '0' | |
SCCACHE_CACHE_SIZE: 10G | |
CC: "sccache clang" | |
CXX: "sccache clang++" | |
PROFILE: "ci" | |
steps: | |
- name: Check out the project | |
uses: actions/checkout@v3 | |
- name: Install Tools | |
uses: ./.github/actions/install-tools | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Cache | |
uses: ./.github/actions/setup-cache | |
with: | |
name: ${{ matrix.make.name }} | |
os: ${{ matrix.os }} | |
rust: ${{ matrix.rust }} | |
- name: ${{ matrix.make.name }} | |
run: make ${{ matrix.make.task }} |