Added base image for amd r4.1 #504
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: CM script automation features test | |
on: | |
pull_request: | |
branches: [ "main", "dev", "mlperf-inference" ] | |
paths: | |
- '.github/workflows/test-cm-script-features.yml' | |
- '**' | |
- '!**.md' | |
jobs: | |
build: | |
runs-on: ${{ matrix.on }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12", "3.8"] | |
on: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install cmind | |
cm pull repo --url=${{ github.event.pull_request.head.repo.html_url }} --checkout=${{ github.event.pull_request.head.ref }} | |
cm run script --quiet --tags=get,sys-utils-cm | |
- name: Run test_docker on linux | |
if: runner.os == 'linux' | |
run: | | |
python script/test-cm-core/src/script/test_docker.py | |
- name: Test CM Script Features | |
run: | | |
python script/test-cm-core/src/script/test_deps.py | |
python script/test-cm-core/src/script/test_install.py | |
python script/test-cm-core/src/script/test_features.py |