WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Record and Use Engine Flags in Summarize/Effect-Size Tools #648

Record and Use Engine Flags in Summarize/Effect-Size Tools

Record and Use Engine Flags in Summarize/Effect-Size Tools #648

Workflow file for this run

name: sightglass
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
RUST_LOG: info
REVISION: "v38.0.3"
jobs:
format-and-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: rustup update
- run: rustup component add rustfmt clippy
- run: cargo fmt --all -- --check
- run: cargo clippy --all-targets --all-features -- -D warnings
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- run: rustup update
- name: Download Cached Wasmtime engine
uses: actions/cache@v4
id: wasmtime-cache
with:
path: engines/wasmtime/*
key: wasmtime-${{ runner.os }}-${{ env.REVISION }}
- name: Build Wasmtime engine
if: steps.wasmtime-cache.outputs.cache-hit != 'true'
working-directory: ./engines/wasmtime
env:
REVISION: ${{ env.REVISION }}
run: |
rustc build.rs
./build
- name: Build all
run: cargo build --verbose --all
- name: Test all
run: cargo test --verbose --all
env:
RUST_BACKTRACE: 1