feat(test/neuron-inference): Add New E2E Tests for BERT Inference on Neuron #436
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
name: "CI" | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: go build ./... | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: go test -c -tags=e2e ./test/... | |
build-image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: docker build --build-arg=KUBERNETES_MINOR_VERSION=latest --file Dockerfile . | |
build-image-neuronx: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: docker build --file test/images/neuron/Dockerfile . | |
build-image-nvidia: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: docker build --file test/images/nvidia/Dockerfile . | |
build-image-nvidia-training: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: docker build --file test/images/nvidia-training/Dockerfile test/images/nvidia-training | |
build-image-nvidia-inference: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: docker build --file test/images/nvidia-inference/Dockerfile test/images/nvidia-inference |