diff --git a/.github/workflows/build&test.yml b/.github/workflows/build&test.yml index f7a938ca019..e02b88683de 100644 --- a/.github/workflows/build&test.yml +++ b/.github/workflows/build&test.yml @@ -22,13 +22,15 @@ jobs: 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 - 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 diff --git a/.github/workflows/run-examples.yml b/.github/workflows/run-examples.yml index 2da5999cf00..5170ed0e42b 100644 --- a/.github/workflows/run-examples.yml +++ b/.github/workflows/run-examples.yml @@ -22,14 +22,17 @@ jobs: 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: nargo compile && cargo run -vv \ No newline at end of file