Skip to content

build: allow CMAKE_BUILD_TYPE override #2

build: allow CMAKE_BUILD_TYPE override

build: allow CMAKE_BUILD_TYPE override #2

Workflow file for this run

name: run-examples
on:
push:
branches:
- latest
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
runner: [ubuntu-latest]
# runner: [arc-runner-set]
runs-on: ${{ matrix.runner }}
container:
image: docker.io/rust:latest
steps:
- name: Install | Clang
shell: bash
run: apt update && apt install -y libclang-dev
- name: Install | CMake
uses: jwlawson/actions-setup-cmake@v1.13
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: |
source /github/home/.bashrc
nargo compile
cargo run -vv