mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-03 19:53:40 +00:00
commit
2b3623018f
7 changed files with 137 additions and 182 deletions
14
.github/dependabot.yml
vendored
Normal file
14
.github/dependabot.yml
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: github-actions
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: daily
|
||||||
|
timezone: Etc/UTC
|
||||||
|
open-pull-requests-limit: 10
|
||||||
|
reviewers:
|
||||||
|
- str4d
|
||||||
|
assignees:
|
||||||
|
- str4d
|
||||||
|
labels:
|
||||||
|
- "A-CI"
|
||||||
258
.github/workflows/ci.yml
vendored
258
.github/workflows/ci.yml
vendored
|
|
@ -4,190 +4,36 @@ on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
name: Test on ${{ matrix.os }}
|
name: Test on ${{ matrix.os }} with ${{ matrix.features }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
# We don't need to test across multiple platforms yet
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||||
# os: [ubuntu-latest, windows-latest, macOS-latest]
|
features: [--all-features, --no-default-features]
|
||||||
os: [ubuntu-latest]
|
continue-on-error: true
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: 1.56.0
|
|
||||||
override: true
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
uses: actions-rs/cargo@v1
|
run: cargo test --verbose --release ${{ matrix.features }}
|
||||||
with:
|
|
||||||
command: test
|
|
||||||
args: --verbose --release --all-features
|
|
||||||
|
|
||||||
build:
|
test-32-bit:
|
||||||
name: Build target ${{ matrix.target }}
|
name: Test on i686-unknown-linux-gnu with ${{ matrix.features }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
target:
|
features: [--all-features, --no-default-features]
|
||||||
- wasm32-unknown-unknown
|
|
||||||
- wasm32-wasi
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: 1.56.0
|
|
||||||
override: true
|
|
||||||
- name: Add target
|
|
||||||
run: rustup target add ${{ matrix.target }}
|
|
||||||
- name: cargo build
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: build
|
|
||||||
args: --all-features
|
|
||||||
|
|
||||||
bitrot:
|
|
||||||
name: Bitrot check
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: 1.56.0
|
|
||||||
override: true
|
|
||||||
# Build benchmarks to prevent bitrot
|
|
||||||
- name: Build benchmarks
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: build
|
|
||||||
args: --benches --all-features
|
|
||||||
|
|
||||||
book:
|
|
||||||
name: Book tests
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: 1.56.0
|
|
||||||
override: true
|
|
||||||
- name: cargo build
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: build
|
|
||||||
- name: Setup mdBook
|
|
||||||
uses: peaceiris/actions-mdbook@v1
|
|
||||||
with:
|
|
||||||
mdbook-version: '0.4.5'
|
|
||||||
- name: Test Pasta book
|
|
||||||
run: mdbook test -L target/debug/deps book/
|
|
||||||
|
|
||||||
clippy:
|
|
||||||
name: Clippy (1.56.0)
|
|
||||||
timeout-minutes: 30
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: 1.56.0
|
|
||||||
components: clippy
|
|
||||||
override: true
|
|
||||||
- name: Run clippy
|
|
||||||
uses: actions-rs/clippy-check@v1
|
|
||||||
with:
|
|
||||||
name: Clippy (1.56.0)
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
args: --all-features --all-targets -- -D warnings
|
|
||||||
|
|
||||||
clippy-beta:
|
|
||||||
name: Clippy (beta)
|
|
||||||
timeout-minutes: 30
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- uses: actions-rs/toolchain@v1
|
- name: Install cross-platform support dependencies
|
||||||
with:
|
run: sudo apt install gcc-multilib
|
||||||
toolchain: beta
|
- run: rustup target add i686-unknown-linux-gnu
|
||||||
components: clippy
|
- name: Run tests
|
||||||
override: true
|
run: >
|
||||||
- name: Run Clippy (beta)
|
cargo test
|
||||||
uses: actions-rs/clippy-check@v1
|
--verbose
|
||||||
continue-on-error: true
|
--target i686-unknown-linux-gnu
|
||||||
with:
|
${{ matrix.features }}
|
||||||
name: Clippy (beta)
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
args: --all-features --all-targets -- -W clippy::all
|
|
||||||
|
|
||||||
codecov:
|
|
||||||
name: Code coverage
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
# Use stable for this to ensure that cargo-tarpaulin can be built.
|
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: stable
|
|
||||||
override: true
|
|
||||||
- name: Install cargo-tarpaulin
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: install
|
|
||||||
args: cargo-tarpaulin
|
|
||||||
- name: Generate coverage report
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: tarpaulin
|
|
||||||
args: --all-features --timeout 600 --out Xml
|
|
||||||
- name: Upload coverage to Codecov
|
|
||||||
uses: codecov/codecov-action@v1
|
|
||||||
with:
|
|
||||||
token: ${{secrets.CODECOV_TOKEN}}
|
|
||||||
|
|
||||||
doc-links:
|
|
||||||
name: Intra-doc links
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: 1.56.0
|
|
||||||
override: true
|
|
||||||
- name: cargo fetch
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: fetch
|
|
||||||
|
|
||||||
# Ensure intra-documentation links all resolve correctly
|
|
||||||
# Requires #![deny(intra_doc_link_resolution_failure)] in crates.
|
|
||||||
- name: Check intra-doc links
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: doc
|
|
||||||
args: --document-private-items
|
|
||||||
|
|
||||||
fmt:
|
|
||||||
name: Rustfmt
|
|
||||||
timeout-minutes: 30
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: 1.56.0
|
|
||||||
override: true
|
|
||||||
- run: rustup component add rustfmt
|
|
||||||
- uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: fmt
|
|
||||||
args: -- --check
|
|
||||||
|
|
||||||
no-std:
|
no-std:
|
||||||
name: Check no-std target ${{ matrix.target }}
|
name: Check no-std target ${{ matrix.target }}
|
||||||
|
|
@ -200,14 +46,64 @@ jobs:
|
||||||
- wasm32-wasi
|
- wasm32-wasi
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: stable
|
|
||||||
override: true
|
|
||||||
- run: rustup target add ${{ matrix.target }}
|
- run: rustup target add ${{ matrix.target }}
|
||||||
- name: Build
|
- name: Build
|
||||||
uses: actions-rs/cargo@v1
|
run: >
|
||||||
|
cargo build
|
||||||
|
--verbose
|
||||||
|
--target ${{ matrix.target }}
|
||||||
|
--no-default-features
|
||||||
|
|
||||||
|
bitrot:
|
||||||
|
name: Bitrot check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
# Build benchmarks to prevent bitrot
|
||||||
|
- name: Build benchmarks
|
||||||
|
run: cargo build --benches --all-features
|
||||||
|
|
||||||
|
book:
|
||||||
|
name: Book tests
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- run: cargo build
|
||||||
|
- name: Setup mdBook
|
||||||
|
uses: peaceiris/actions-mdbook@v1
|
||||||
with:
|
with:
|
||||||
command: build
|
mdbook-version: '0.4.5'
|
||||||
args: --verbose --target ${{ matrix.target }} --no-default-features
|
- name: Test Pasta book
|
||||||
|
run: mdbook test -L target/debug/deps book/
|
||||||
|
|
||||||
|
codecov:
|
||||||
|
name: Code coverage
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: xd009642/tarpaulin:develop-nightly
|
||||||
|
options: --security-opt seccomp=unconfined
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Generate coverage report
|
||||||
|
run: cargo tarpaulin --engine llvm --all-features --timeout 600 --out Xml
|
||||||
|
- name: Upload coverage to Codecov
|
||||||
|
uses: codecov/codecov-action@v3.1.1
|
||||||
|
|
||||||
|
doc-links:
|
||||||
|
name: Intra-doc links
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- run: cargo fetch
|
||||||
|
# Requires #![deny(rustdoc::broken_intra_doc_links)] in crates.
|
||||||
|
- name: Check intra-doc links
|
||||||
|
run: cargo doc --document-private-items
|
||||||
|
|
||||||
|
fmt:
|
||||||
|
name: Rustfmt
|
||||||
|
timeout-minutes: 30
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- run: cargo fmt -- --check
|
||||||
|
|
|
||||||
24
.github/workflows/lints-beta.yml
vendored
Normal file
24
.github/workflows/lints-beta.yml
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
name: Beta lints
|
||||||
|
|
||||||
|
# These lints are only informative, so we only run them directly on branches
|
||||||
|
# and not trial-merges of PRs, to reduce noise.
|
||||||
|
on: push
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
clippy-beta:
|
||||||
|
name: Clippy (beta)
|
||||||
|
timeout-minutes: 30
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
continue-on-error: true
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: dtolnay/rust-toolchain@beta
|
||||||
|
id: toolchain
|
||||||
|
- run: rustup override set ${{steps.toolchain.outputs.name}}
|
||||||
|
- name: Run Clippy (beta)
|
||||||
|
uses: actions-rs/clippy-check@v1
|
||||||
|
continue-on-error: true
|
||||||
|
with:
|
||||||
|
name: Clippy (beta)
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
args: --all-features --all-targets -- -W clippy::all
|
||||||
18
.github/workflows/lints-stable.yml
vendored
Normal file
18
.github/workflows/lints-stable.yml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
name: Stable lints
|
||||||
|
|
||||||
|
# We only run these lints on trial-merges of PRs to reduce noise.
|
||||||
|
on: pull_request
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
clippy:
|
||||||
|
name: Clippy (MSRV)
|
||||||
|
timeout-minutes: 30
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Run clippy
|
||||||
|
uses: actions-rs/clippy-check@v1
|
||||||
|
with:
|
||||||
|
name: Clippy (MSRV)
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
args: --all-features --all-targets -- -D warnings
|
||||||
|
|
@ -22,6 +22,7 @@ rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bincode = "1.3"
|
bincode = "1.3"
|
||||||
criterion = "0.3"
|
criterion = "0.3"
|
||||||
|
csv = ">= 1.0, < 1.2" # csv 1.2 has MSRV 1.60
|
||||||
rand_xorshift = "0.3"
|
rand_xorshift = "0.3"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
1.56.0
|
|
||||||
3
rust-toolchain.toml
Normal file
3
rust-toolchain.toml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[toolchain]
|
||||||
|
channel = "1.56.0"
|
||||||
|
components = [ "clippy", "rustfmt" ]
|
||||||
Loading…
Reference in a new issue