Skip to content

Commit

Permalink
#5 - Add more action
Browse files Browse the repository at this point in the history
  • Loading branch information
ekrembal committed Nov 28, 2023
1 parent 461fed1 commit fe51567
Show file tree
Hide file tree
Showing 8 changed files with 67 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/check-and-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches:
- main
- ekrem/ci
- dev


name: Check and Lint
Expand Down
58 changes: 58 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
on:
pull_request:
push:
branches:
- main
- ekrem/ci
- dev

name: Test with Code Coverage

jobs:
test:
name: Test
env:
PROJECT_NAME_UNDERSCORE: rust_ci_github_actions_workflow
CARGO_INCREMENTAL: 0
RUSTFLAGS: -Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort
RUSTDOCFLAGS: -Cpanic=abort
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: Cache dependencies
uses: actions/cache@v2
env:
cache-name: cache-dependencies
with:
path: |
~/.cargo/.crates.toml
~/.cargo/.crates2.json
~/.cargo/bin
~/.cargo/registry/index
~/.cargo/registry/cache
target
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Cargo.lock') }}
- name: Generate test result and coverage report
run: |
cargo install cargo2junit grcov;
cargo test $CARGO_OPTIONS -- -Z unstable-options --format json | cargo2junit > results.xml;
zip -0 ccov.zip `find . \( -name "$PROJECT_NAME_UNDERSCORE*.gc*" \) -print`;
grcov ccov.zip -s . -t lcov --llvm --ignore-not-existing --ignore "/*" --ignore "tests/*" -o lcov.info;
- name: Upload test results
uses: EnricoMi/publish-unit-test-result-action@v1
with:
check_name: Test Results
github_token: ${{ secrets.GITHUB_TOKEN }}
files: results.xml
- name: Upload to CodeCov
uses: codecov/codecov-action@v1
with:
# required for private repositories:
# token: ${{ secrets.CODECOV_TOKEN }}
files: ./lcov.info
fail_ci_if_error: true
3 changes: 1 addition & 2 deletions src/traits/bit_commitment.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
pub trait BitCommitmentTrait {
}
pub trait BitCommitmentTrait {}
3 changes: 1 addition & 2 deletions src/traits/circuit.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@

// This trait defines the behavior of a circuit.
pub trait CircuitTrait {
fn evaluate(&self);

fn from_bristol(file: &str) -> Self;

fn generate_commitment_tree(&self);
}
}
2 changes: 1 addition & 1 deletion src/traits/gate.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pub trait GateTrait {
fn create_challenge_script(&self) -> String;
}
}
4 changes: 2 additions & 2 deletions src/traits/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub mod bit_commitment;
pub mod gate;
pub mod circuit;
pub mod wire;
pub mod gate;
pub mod wire;
4 changes: 3 additions & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ use std::io::{self, BufRead};
use std::path::Path;

pub fn read_lines<P>(filename: P) -> io::Result<io::Lines<io::BufReader<File>>>
where P: AsRef<Path>, {
where
P: AsRef<Path>,
{
let file = File::open(filename)?;
Ok(io::BufReader::new(file).lines())
}
1 change: 0 additions & 1 deletion src/wire.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,3 @@ mod tests {
// TODO:Test if script returns 1 given input witness with [preimages[0], preimages[1]
}
}

0 comments on commit fe51567

Please sign in to comment.