Support find cache + gh action for core mlc actions #4
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
name: MLC core actions test | |
on: | |
pull_request: | |
branches: [ "main", "dev" ] | |
paths: | |
- '.github/workflows/test-mlc-core-actions.yml' | |
- '**' | |
- '!**.md' | |
jobs: | |
test_mlc_core_actions: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12", "3.8"] | |
os: ["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: Configure git longpaths (Windows) | |
if: matrix.os == 'windows-latest' | |
run: | | |
git config --system core.longpaths true | |
- name: Install mlcflow from the pull request's source repository and branch | |
run: | | |
git clone ${{ github.event.pull_request.head.repo.html_url }} --branch=${{ github.event.pull_request.head.ref }} | |
cd mlcflow | |
pip install . | |
- name: Test pull repo - Pull a forked MLOps repository | |
run: | | |
mlc pull repo anandhu-eng@mlperf-automations --checkout=dev | |
- name: Test pull repo - Test conflicting repo scenario | |
run: | | |
mlc pull repo mlcommons@mlperf-automations --checkout=dev | |
- name: Test list repo - List the existing repositories | |
run: | | |
mlc list repo | |
- name: Test rm repo - Remove the forked mlperf-automation repo | |
run: | | |
mlc rm repo anandhu-eng@mlperf-automations | |
- name: Test find cache - Cache not present | |
run: | | |
mlc find cache --tags=detect,os | |
- name: Test run script - Output being used for testing mlc cache | |
run: | | |
mlc run script --tags=get,imagenet-aux | |
mlc run script --tags=get,imagenet-aux,_from.dropbox | |
- name: Test find cache - More than one cache present | |
run: | | |
mlc find cache --tags=get,imagenet-aux |