Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Nowak committed Dec 7, 2023
1 parent 1423de2 commit a7951e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build&test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,15 @@ jobs:

steps:
- name: Install | Clang
shell: bash
run: apt update && apt install -y libclang-dev
- name: Install | CMake
uses: jwlawson/[email protected]
with:
cmake-version: '3.24.0'
- name: Install | Nargo
run: curl -L https://raw.githubusercontent.com/noir-lang/noirup/main/install | bash && noirup
shell: bash
run: curl -L https://raw.githubusercontent.com/noir-lang/noirup/main/install | bash && source /github/home/.bashrc && noirup
- uses: actions/checkout@v3
- name: Build
working-directory: noir/tooling/noir_rs
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/run-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,17 @@ jobs:

steps:
- name: Install | Clang
shell: bash
run: apt update && apt install -y libclang-dev
- name: Install | CMake
uses: jwlawson/[email protected]
with:
cmake-version: '3.24.0'
- name: Install | Nargo
shell: bash
run: curl -L https://raw.githubusercontent.com/noir-lang/noirup/main/install | bash && source /github/home/.bashrc && noirup
- uses: actions/checkout@v3
- name: Run noir/tooling/noir_rs/examples/poly_check_circuit
working-directory: noir/tooling/noir_rs/examples/poly_check_circuit
shell: bash
run: nargo compile && cargo run -vv

0 comments on commit a7951e7

Please sign in to comment.