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

Adding test for validate domain libary workflow #1236

Merged
merged 1 commit into from
Dec 14, 2022
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
19 changes: 19 additions & 0 deletions .github/workflows/test-validate-domain-library.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test validate domain library

on:
pull_request:
paths:
- .github/workflows/validate-domain-library.yml
- .github/workflows/test-validate-domain-library.yml
workflow_dispatch:

jobs:
test-linux-conda:
uses: ./.github/workflows/validate-domain-library.yml
with:
package_type: "conda"
os: "linux"
channel: "release"
repository: "pytorch/builder"
ref: main
smoke_test: "echo test"
48 changes: 9 additions & 39 deletions .github/workflows/validate-domain-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,44 +5,13 @@ name: Validate domain libary
# For the details about parameter values, see:
# pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
on:
workflow_dispatch:
inputs:
channel:
description: "Channel to use (nightly, test, release, all)"
required: true
type: choice
options:
- release
- nightly
- test
- all
package-type:
description: "Package type (conda, wheel, all)"
required: true
type: choice
options:
- conda
- wheel
- all
repository:
description: "Path to repository to checkout"
required: true
type: string
smoke_test:
description: "Path to a smoke test script"
required: true
type: string
ref:
description: 'Reference to checkout, defaults to empty'
default: ""
required: false
type: string
workflow_call:
inputs:
os:
description: "Operating system to generate for (linux, windows, macos, macos-arm64)"
required: true
required: false
type: string
default: "all"
channel:
description: "Channel to use (nightly, test, release, all)"
required: true
Expand All @@ -52,10 +21,11 @@ on:
default: ""
required: false
type: string
package-type:
package_type:
description: "Package type (conda, wheel, all)"
required: true
required: false
type: string
default: "all"
repository:
description: "Path to repository to checkout"
required: true
Expand Down Expand Up @@ -89,12 +59,12 @@ jobs:
matrix: ${{ fromJson(needs.generate-linux-conda-matrix.outputs.matrix) }}
fail-fast: false
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
name: "text-${{ matrix.package_type }}-${{ matrix.python_version }}"
name: "linux-${{ matrix.package_type }}-${{ matrix.python_version }}"
with:
runner: "linux.2xlarge"
repository: ${{ inputs.repository }}
ref: ${{ inputs.ref || github.ref }}
job-name: "text-${{ matrix.package_type }}-${{ matrix.python_version }}"
job-name: "linux-${{ matrix.package_type }}-${{ matrix.python_version }}"
script: |
set -ex
export ENV_NAME="conda-env-${{ github.run_id }}"
Expand All @@ -110,12 +80,12 @@ jobs:
matrix: ${{ fromJson(needs.generate-linux-wheel-matrix.outputs.matrix) }}
fail-fast: false
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main
name: "text-${{ matrix.package_type }}-${{ matrix.python_version }}"
name: "linux-${{ matrix.package_type }}-${{ matrix.python_version }}"
with:
runner: "linux.2xlarge"
repository: ${{ inputs.repository }}
ref: ${{ inputs.ref || github.ref }}
job-name: "text-${{ matrix.package_type }}-${{ matrix.python_version }}"
job-name: "linux-${{ matrix.package_type }}-${{ matrix.python_version }}"
script: |
set -ex
export ENV_NAME="conda-env-${{ github.run_id }}"
Expand Down