From c30cbfcb6b011d65df377f7355f2684b02273bea Mon Sep 17 00:00:00 2001 From: SRetip Date: Mon, 3 Jun 2024 12:06:36 +0300 Subject: [PATCH 1/2] audit fix --- .github/workflows/standard_rust_push.yml | 4 +++- module/move/willbe/template/workflow/standard_rust_push.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/standard_rust_push.yml b/.github/workflows/standard_rust_push.yml index 1812c69512..27d9b671aa 100644 --- a/.github/workflows/standard_rust_push.yml +++ b/.github/workflows/standard_rust_push.yml @@ -57,8 +57,10 @@ jobs : - name: Set MANIFEST_ROOT_PATH id: rootpath run: echo "::set-output name=path::$(dirname ${{ inputs.manifest_path }})" + - name: Build module + run: cd ${{ steps.rootpath.outputs.path }} && cargo build - name: Audit the modules - run: cd ${{ steps.rootpath.outputs.path }} && make audit + run: make audit continue-on-error: true - name: Generate documentation for the modules run: make doc open=no manifest_path=${{ inputs.manifest_path }} diff --git a/module/move/willbe/template/workflow/standard_rust_push.yml b/module/move/willbe/template/workflow/standard_rust_push.yml index 1812c69512..27d9b671aa 100644 --- a/module/move/willbe/template/workflow/standard_rust_push.yml +++ b/module/move/willbe/template/workflow/standard_rust_push.yml @@ -57,8 +57,10 @@ jobs : - name: Set MANIFEST_ROOT_PATH id: rootpath run: echo "::set-output name=path::$(dirname ${{ inputs.manifest_path }})" + - name: Build module + run: cd ${{ steps.rootpath.outputs.path }} && cargo build - name: Audit the modules - run: cd ${{ steps.rootpath.outputs.path }} && make audit + run: make audit continue-on-error: true - name: Generate documentation for the modules run: make doc open=no manifest_path=${{ inputs.manifest_path }} From 794188026865abce3ece226f1ec78490f8ebc97a Mon Sep 17 00:00:00 2001 From: SRetip Date: Mon, 3 Jun 2024 12:37:12 +0300 Subject: [PATCH 2/2] fix --- .github/workflows/standard_rust_push.yml | 2 +- module/move/willbe/template/workflow/standard_rust_push.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/standard_rust_push.yml b/.github/workflows/standard_rust_push.yml index 27d9b671aa..c093bca7e1 100644 --- a/.github/workflows/standard_rust_push.yml +++ b/.github/workflows/standard_rust_push.yml @@ -58,7 +58,7 @@ jobs : id: rootpath run: echo "::set-output name=path::$(dirname ${{ inputs.manifest_path }})" - name: Build module - run: cd ${{ steps.rootpath.outputs.path }} && cargo build + run: cd ${{ steps.rootpath.outputs.path }} && cargo build && cd - - name: Audit the modules run: make audit continue-on-error: true diff --git a/module/move/willbe/template/workflow/standard_rust_push.yml b/module/move/willbe/template/workflow/standard_rust_push.yml index 27d9b671aa..c093bca7e1 100644 --- a/module/move/willbe/template/workflow/standard_rust_push.yml +++ b/module/move/willbe/template/workflow/standard_rust_push.yml @@ -58,7 +58,7 @@ jobs : id: rootpath run: echo "::set-output name=path::$(dirname ${{ inputs.manifest_path }})" - name: Build module - run: cd ${{ steps.rootpath.outputs.path }} && cargo build + run: cd ${{ steps.rootpath.outputs.path }} && cargo build && cd - - name: Audit the modules run: make audit continue-on-error: true