Skip to content

Commit

Permalink
LibKeccak
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Jan 5, 2024
1 parent ccba079 commit dde94d5
Show file tree
Hide file tree
Showing 17 changed files with 3,078 additions and 122 deletions.
68 changes: 68 additions & 0 deletions .github/workflows/rust-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Rust CI
on: [push]

env:
CARGO_TERM_COLOR: always

jobs:
init:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust nightly toolchain
uses: dtolnay/rust-toolchain@nightly
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: install just
uses: taiki-e/install-action@just
- name: generate testdata
run: |
just testdata
- uses: bissolli/gh-action-persist-workspace@v1
with:
action: persist
cargo-tests:
needs: [init]
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: bissolli/gh-action-persist-workspace@v1
with:
action: retrieve
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: fuzz test
run: cargo run --release -- -m 100 -t 4 --diff-count 50000
cargo-lint:
needs: [init]
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: bissolli/gh-action-persist-workspace@v1
with:
action: retrieve
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy --workspace --all --locked -- -D warnings
cargo-build:
needs: [init]
runs-on: ubuntu-latest
timeout-minutes: 20
continue-on-error: true
steps:
- uses: bissolli/gh-action-persist-workspace@v1
with:
action: retrieve
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: build
id: build
run: cargo build --workspace --all --locked
14 changes: 7 additions & 7 deletions .github/workflows/test.yml → .github/workflows/sol-test.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
name: test

on: workflow_dispatch
name: sol-test
on: [push]

env:
FOUNDRY_PROFILE: ci

jobs:
check:
test:
strategy:
fail-fast: true

Expand All @@ -16,18 +15,19 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build

- name: Check formatting
run: |
forge fmt --check
id: fmt
- name: Run Forge tests
run: |
forge test -vvv
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
/target

out/
cache/

testdata/
Loading

0 comments on commit dde94d5

Please sign in to comment.