diff --git a/.github/workflows/run_workflows.yml b/.github/workflows/run_workflows.yml index 6ffc87f2..b0ea4f70 100644 --- a/.github/workflows/run_workflows.yml +++ b/.github/workflows/run_workflows.yml @@ -93,6 +93,18 @@ jobs: ref: ${{ inputs.mm-workflows_ref }} path: mm-workflows + - name: Set up jq + run: sudo apt-get install -y jq + + - name: Delete workflows in mm-workflows + if: always() + run: | + sed -i '\/\//d' mm-workflows/examples/config_ci.json + for file in $(jq -r '.skip_schema_generation[]' mm-workflows/examples/config_ci.json); do + echo "Deleting $file.wic" + rm -f "$file.wic" + done + ls mm-workflows/examples/*.wic - name: Checkout image-workflows if: always() uses: actions/checkout@v3 @@ -127,6 +139,8 @@ jobs: uses: conda-incubator/setup-miniconda@v3.0.1 with: miniforge-variant: Miniforge-pypy3 + auto-activate-base: false + use-mamba: true miniforge-version: latest environment-file: workflow-inference-compiler/install/system_deps.yml activate-environment: wic_github_actions