Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove mlops repo and mlops ref args #54

Merged
merged 4 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions .github/workflows/container-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,6 @@ jobs:
uses: intel/ai-containers/test-runner@main
with:
cache_registry: ${{ secrets.CACHE_REGISTRY }}
mlops_repo: ${{ secrets.MLOPS_REPO || github.repository }}
mlops_ref: ${{ secrets.MLOPS_REF || github.ref }}
recipe_dir: ${{ inputs.group_dir }}
registry: ${{ secrets.REGISTRY }}
repo: ${{ secrets.REPO }}
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test-runner-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,8 @@ jobs:
uses: intel/ai-containers/test-runner@main
with:
cache_registry: ${{ secrets.CACHE_REGISTRY }}
mlops_repo: ${{ github.repository }}
mlops_ref: ${{ github.ref }}
recipe_dir: test-runner
registry: ${{ secrets.REGISTRY }}
repo: ${{ secrets.REPO }}
test_dir: test-runner
token: ${{ secrets.ACTION_TOKEN || github.token }}
token: ${{ secrets.ACTION_TOKEN }}
13 changes: 2 additions & 11 deletions test-runner/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,6 @@ inputs:
description: 'Container Cache Registry URL'
required: true
type: string
mlops_repo:
description: 'Test Runner org/repo'
required: true
type: string
mlops_ref:
description: 'Test Runner Branch/Tag'
required: false
default: develop
type: string
recipe_dir:
description: 'Path to Recipe Directory'
required: false
Expand All @@ -54,8 +45,8 @@ runs:
- uses: actions/checkout@v4
with:
path: mlops
ref: ${{ inputs.mlops_ref }}
repository: ${{ inputs.mlops_repo }}
ref: ${{ github.ref }}
repository: intel/ai-containers
token: ${{ inputs.token }}
- name: Install Requirements
shell: bash
Expand Down
Loading