Skip to content

Commit 2efe48b

Browse files
authored
Add Circom stuff to the Runtime (#330)
1 parent 1494885 commit 2efe48b

File tree

33 files changed

+675
-524
lines changed

33 files changed

+675
-524
lines changed

.dvc/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/config.local
2+
/tmp
3+
/cache

.dvc/config

Whitespace-only changes.

.dvcignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Add patterns of files dvc should ignore, which could improve
2+
# the performance. Learn more at
3+
# https://dvc.org/doc/user-guide/dvcignore

.github/workflows/check.yml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ jobs:
2828
- name: Setup DVC
2929
uses: iterative/setup-dvc@v1
3030
- name: Fetch Fixtures
31-
run: ./scripts/fetch-fixtures.sh
31+
uses: nick-fields/retry@v2
32+
with:
33+
max_attempts: 10
34+
timeout_minutes: 30
35+
command: dvc pull -v
3236
- name: Check Format
3337
run: |
3438
SKIP_WASM_BUILD=1 cargo fmt --all -- --check
@@ -47,7 +51,11 @@ jobs:
4751
- name: Setup DVC
4852
uses: iterative/setup-dvc@v1
4953
- name: Fetch Fixtures
50-
run: ./scripts/fetch-fixtures.sh
54+
uses: nick-fields/retry@v2
55+
with:
56+
max_attempts: 10
57+
timeout_minutes: 30
58+
command: dvc pull -v
5159
- name: Check Build
5260
run: |
5361
SKIP_WASM_BUILD=1 cargo build --release -Z sparse-registry
@@ -65,7 +73,11 @@ jobs:
6573
- name: Setup DVC
6674
uses: iterative/setup-dvc@v1
6775
- name: Fetch Fixtures
68-
run: ./scripts/fetch-fixtures.sh
76+
uses: nick-fields/retry@v2
77+
with:
78+
max_attempts: 10
79+
timeout_minutes: 30
80+
command: dvc pull -v
6981
- name: Install toolchain
7082
uses: dtolnay/rust-toolchain@stable
7183
with:
@@ -96,18 +108,5 @@ jobs:
96108
needs: [check-format, check-build, test]
97109
runs-on: ubuntu-20.04
98110
steps:
99-
- uses: actions/checkout@v2
100-
- name: Set-Up
101-
run: sudo apt install -y cmake pkg-config libssl-dev git build-essential clang libclang-dev curl protobuf-compiler
102-
- name: Setup DVC
103-
uses: iterative/setup-dvc@v1
104-
- name: Fetch Fixtures
105-
run: ./scripts/fetch-fixtures.sh
106-
- name: Install toolchain
107-
uses: dtolnay/rust-toolchain@stable
108-
with:
109-
toolchain: nightly
110-
- name: Install cargo-nextest
111-
uses: baptiste0928/cargo-install@v1
112-
with:
113-
crate: cargo-nextest
111+
- name: All Done
112+
run: echo "All Done"

.github/workflows/coverage.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,18 @@ jobs:
3333
uses: iterative/setup-dvc@v1
3434

3535
- name: Fetch Fixtures
36-
run: ./scripts/fetch-fixtures.sh
36+
uses: nick-fields/retry@v2
37+
with:
38+
max_attempts: 10
39+
timeout_minutes: 30
40+
command: dvc pull -v
3741

3842
- name: Install apt dependencies
3943
run: |
4044
sudo apt-get update && \
4145
sudo apt-get install -y clang libssl-dev llvm libudev-dev libgmp3-dev protobuf-compiler && \
4246
sudo rm -rf /var/lib/apt/lists/*
43-
44-
47+
4548
- name: Rust Cache
4649
uses: Swatinem/rust-cache@v1.3.0
4750

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,4 @@
2424
**/node_modules
2525
types/build
2626
types/ts-types
27-
.dvc/
28-
solidity-fixtures
2927
.direnv

.gitmodules

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)