-
Notifications
You must be signed in to change notification settings - Fork 33
63 lines (53 loc) · 1.47 KB
/
sightglass.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: sightglass
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
RUST_LOG: info
# The Wasmtime commit that we build the bench API from for testing. Bumping
# this will automatically cause us to update our CI cache on the next run.
WASMTIME_COMMIT: "a2e71dafac4d2e42ed6edbc77081d39a40f4c3ff"
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Install stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Install nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- name: Download Cached Wasmtime engine
uses: actions/cache@v2
id: wasmtime-cache
with:
path: engines/wasmtime/*
key: wasmtime-${{ runner.os }}-${{ env.WASMTIME_COMMIT }}
- name: Build Wasmtime engine
if: steps.wasmtime-cache.outputs.cache-hit != 'true'
working-directory: ./engines/wasmtime
run: |
rustc build.rs
./build
- name: Build all
run: cargo +nightly build --verbose --all
- name: Test all
run: cargo +nightly test --verbose --all