Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/run_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down