Skip to content

Commit

Permalink
Update test-cm.yml
Browse files Browse the repository at this point in the history
Fix the CM build in the github action for windows
  • Loading branch information
arjunsuresh authored Jun 8, 2024
1 parent 7c68797 commit 4debd13
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test-cm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,12 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install cmind
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install --ignore-installed --verbose pip setuptools
cd cm
python setup.py install
python -m cmind
# cm pull repo --url=${{ github.event.pull_request.head.repo.html_url }} --checkout=${{ github.event.pull_request.head.ref }}
cm pull repo mlcommons@cm4mlops --branch=mlperf-inference
- name: Test CM
Expand Down

0 comments on commit 4debd13

Please sign in to comment.