Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierdmello committed May 23, 2024
1 parent 7b98ef2 commit 80d70f8
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,18 @@ jobs:
name: CI Test Suite
runs-on: buildjet-32vcpu-ubuntu-2204
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
strategy:
matrix:
project:
- primitives
- rotate
- script
- header-range
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: rust-cache
uses: buildjet/cache@v3
with:
Expand All @@ -42,6 +50,7 @@ jobs:
with:
command: test
args: --release --features "ci"
working-directory: sp1-vectorx/${{ matrix.project }}
env:
RUST_LOG: info
RUST_BACKTRACE: 1
Expand All @@ -50,10 +59,17 @@ jobs:
name: Formatting & Clippy
runs-on: buildjet-32vcpu-ubuntu-2204
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
strategy:
matrix:
project:
- primitives
- rotate
- script
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: rust-cache
uses: buildjet/cache@v3
with:
Expand All @@ -79,12 +95,14 @@ jobs:
with:
command: fmt
args: --all -- --check
working-directory: sp1-vectorx/${{ matrix.project }}
env:
CARGO_INCREMENTAL: 1
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features --all-targets -- -D warnings -A incomplete-features
working-directory: sp1-vectorx/${{ matrix.project }}
env:
CARGO_INCREMENTAL: 1

0 comments on commit 80d70f8

Please sign in to comment.