Fast Release Nightly CI/CD Pipeline #37
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: Fast Release Nightly CI/CD Pipeline | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
# Run the workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
docker-tag: | |
name: Check if 'latest' tag could be used (no build docker images) | |
runs-on: ubuntu-latest | |
outputs: | |
tag: ${{ steps.tag.outputs.value }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Set a docker image tag" | |
id: tag | |
shell: bash | |
run: | | |
set -x | |
# for the default branch (develop) we use "latest" tag and | |
# do not build the docker images | |
if [[ "${{ github.ref_name }}" == "${{ github.event.repository.default_branch }}" ]] ; then | |
tag="latest" | |
else | |
tag="$(git rev-parse --short HEAD)" | |
fi | |
echo "value=$tag" >> $GITHUB_OUTPUT | |
variants: | |
name: Define supported AIMET variants | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.final.outputs.value }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Torch variants | |
run: | | |
VALUE=$(echo "${VALUE:-"{}"}" | jq -c '.include += [ | |
{ | |
"id": "torch-cpu", | |
"runs-on": "ubuntu-latest", | |
"VER_PYTHON": "3.10", | |
"VER_TENSORFLOW": "", | |
"VER_TORCH": "2.1.2", | |
"VER_ONNXRUNTIME": "", | |
"VER_CUDA": "", | |
"ENABLE_TESTS": "ON", | |
"BUILD_TARGETS": "all" | |
}, | |
{ | |
"id": "torch-gpu", | |
"runs-on": "k8s-gpu", | |
"VER_PYTHON": "3.10", | |
"VER_TENSORFLOW": "", | |
"VER_TORCH": "2.1.2", | |
"VER_ONNXRUNTIME": "", | |
"VER_CUDA": "12.1.1", | |
"ENABLE_TESTS": "ON", | |
"BUILD_TARGETS": "all" | |
} | |
]') | |
echo "VALUE=$VALUE" >> $GITHUB_ENV | |
- name: Tensorflow variants | |
run: | | |
VALUE=$(echo "${VALUE:-"{}"}" | jq -c '.include += [ | |
{ | |
"id": "tf-cpu", | |
"runs-on": "ubuntu-latest", | |
"VER_PYTHON": "3.10", | |
"VER_TENSORFLOW": "2.10.1", | |
"VER_TORCH": "", | |
"VER_ONNXRUNTIME": "", | |
"VER_CUDA": "", | |
"ENABLE_TESTS": "ON", | |
"BUILD_TARGETS": "all" | |
}, | |
{ | |
"id": "tf-gpu", | |
"runs-on": "k8s-gpu", | |
"VER_PYTHON": "3.10", | |
"VER_TENSORFLOW": "2.10.1", | |
"VER_TORCH": "", | |
"VER_ONNXRUNTIME": "", | |
"VER_CUDA": "11.8.0", | |
"ENABLE_TESTS": "ON", | |
"BUILD_TARGETS": "all" | |
} | |
]') | |
echo "VALUE=$VALUE" >> $GITHUB_ENV | |
- name: ONNX variants | |
run: | | |
VALUE=$(echo "${VALUE:-"{}"}" | jq -c '.include += [ | |
{ | |
"id": "onnx-cpu", | |
"runs-on": "ubuntu-latest", | |
"VER_PYTHON": "3.10", | |
"VER_TENSORFLOW": "", | |
"VER_TORCH": "", | |
"VER_ONNXRUNTIME": "1.18.1", | |
"ENABLE_TESTS": "ON", | |
"BUILD_TARGETS": "all" | |
}, | |
{ | |
"id": "onnx-gpu", | |
"runs-on": "k8s-gpu", | |
"VER_PYTHON": "3.10", | |
"VER_TENSORFLOW": "", | |
"VER_TORCH": "", | |
"VER_ONNXRUNTIME": "1.18.1", | |
"VER_CUDA": "11.8.0", | |
"ENABLE_TESTS": "ON", | |
"BUILD_TARGETS": "all" | |
} | |
]') | |
echo "VALUE=$VALUE" >> $GITHUB_ENV | |
- name: Doc variants | |
run: | | |
VALUE=$(echo "${VALUE:-"{}"}" | jq -c '.include += [ | |
{ | |
"id": "tf-torch-cpu", | |
"runs-on": "ubuntu-latest", | |
"VER_PYTHON": "3.10", | |
"VER_TENSORFLOW": "2.12.*", | |
"VER_TORCH": "2.1.2", | |
"VER_ONNXRUNTIME": "1.18.1", | |
"VER_CUDA": "", | |
"ENABLE_TESTS": "OFF", | |
"BUILD_TARGETS": "all;doc" | |
} | |
]') | |
echo "VALUE=$VALUE" >> $GITHUB_ENV | |
- name: (Last step) Generate few extra properties for each variant | |
id: final | |
run: | | |
echo "value=$VALUE" >> $GITHUB_OUTPUT | |
docker-build-image: | |
name: Docker image ${{ matrix.id }} | |
runs-on: ubuntu-latest | |
needs: [ docker-tag, variants ] | |
strategy: | |
matrix: ${{ fromJSON(needs.variants.outputs.matrix) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/docker-build-image | |
with: | |
dockerfile: Jenkins/fast-release/Dockerfile.ci | |
docker-login: ${{ secrets.DOCKER_LOGIN }} | |
docker-password: ${{ secrets.DOCKER_CREDENTIALS }} | |
docker-registry: ${{ vars.DOCKER_REGISTRY }} | |
image-name: "${{ vars.DOCKER_IMAGE }}-${{ matrix.id }}" | |
image-tag: ${{ needs.docker-tag.outputs.tag }} | |
build-args: | | |
VER_PYTHON=${{ matrix.VER_PYTHON }} | |
VER_CUDA=${{ matrix.VER_CUDA }} | |
VER_TORCH=${{ matrix.VER_TORCH }} | |
VER_TENSORFLOW=${{ matrix.VER_TENSORFLOW }} | |
VER_ONNXRUNTIME=${{ matrix.VER_ONNXRUNTIME }} | |
AIMET_VARIANT=${{ matrix.id }} | |
call-build-wheels: | |
name: Call build-wheels | |
needs: [ docker-tag, variants, docker-build-image ] | |
uses: ./.github/workflows/build-wheels.yml | |
with: | |
variants: ${{ needs.variants.outputs.matrix }} | |
image-tag: ${{ needs.docker-tag.outputs.tag }} | |
secrets: inherit | |
call-run-unit-tests: | |
name: Run unit tests | |
needs: [ variants, call-build-wheels ] | |
uses: ./.github/workflows/run-unit-tests.yml | |
with: | |
variants: ${{ needs.variants.outputs.matrix }} | |
secrets: inherit | |
call-run-acceptance-tests: | |
name: Run acceptance tests | |
needs: [ variants, call-build-wheels, call-run-unit-tests ] | |
uses: ./.github/workflows/run-acceptance-tests.yml | |
with: | |
variants: ${{ needs.variants.outputs.matrix }} | |
secrets: inherit | |
cleanup: | |
needs: [ docker-tag, variants, call-build-wheels ] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: ${{ fromJSON(needs.variants.outputs.matrix) }} | |
steps: | |
- name: Delete temp docker image | |
if: needs.docker-tag.outputs.tag != 'latest' | |
run: curl -k -H "Authorization:Bearer ${{ secrets.DOCKER_CREDENTIALS }}" -X DELETE "https://${{ vars.DOCKER_REGISTRY }}/v2/${{ vars.DOCKER_IMAGE }}-${{ matrix.id }}/manifests/${{ needs.docker-tag.outputs.tag }}" || true |