2023-11-30 07:58:32 +00:00
|
|
|
name: Publish Gpu Builder
|
|
|
|
# TODO: do not trigger action for some document file update
|
|
|
|
|
|
|
|
# This workflow is triggered on pushes or pull request to the repository.
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
# file paths to consider in the event. Optional; defaults to all.
|
|
|
|
paths:
|
|
|
|
- 'build/docker/builder/gpu/**'
|
|
|
|
- '.github/workflows/publish-gpu-builder.yaml'
|
|
|
|
- '!**.md'
|
|
|
|
pull_request:
|
|
|
|
# file paths to consider in the event. Optional; defaults to all.
|
|
|
|
paths:
|
|
|
|
- 'build/docker/builder/gpu/**'
|
|
|
|
- '.github/workflows/publish-gpu-builder.yaml'
|
|
|
|
- '!**.md'
|
|
|
|
|
2023-12-14 03:30:38 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-11-30 07:58:32 +00:00
|
|
|
jobs:
|
|
|
|
publish-gpu-builder:
|
|
|
|
name: ${{ matrix.arch }} ${{ matrix.os }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 500
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu20.04]
|
2023-12-01 06:48:32 +00:00
|
|
|
arch: [amd64]
|
2023-11-30 07:58:32 +00:00
|
|
|
env:
|
|
|
|
OS_NAME: ${{ matrix.os }}
|
|
|
|
IMAGE_ARCH: ${{ matrix.arch }}
|
|
|
|
steps:
|
2023-12-04 02:10:35 +00:00
|
|
|
- name: Maximize build space
|
|
|
|
uses: easimon/maximize-build-space@master
|
|
|
|
with:
|
|
|
|
root-reserve-mb: 20480
|
|
|
|
# overprovision-lvm: 'true'
|
|
|
|
swap-size-mb: 1024
|
|
|
|
remove-dotnet: 'true'
|
|
|
|
remove-android: 'true'
|
|
|
|
remove-haskell: 'true'
|
2023-11-30 07:58:32 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get version from system time after release step
|
|
|
|
id: extracter
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=version::$(date +%Y%m%d)"
|
|
|
|
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
|
|
|
|
# - name: Setup upterm session
|
|
|
|
# uses: lhotari/action-upterm@v1
|
|
|
|
- name: Docker Build
|
|
|
|
if: success() && github.event_name == 'pull_request' && github.repository == 'milvus-io/milvus'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2023-12-01 06:48:32 +00:00
|
|
|
docker info
|
|
|
|
docker build -t milvusdb/milvus-env:gpu-${OS_NAME}-${{ steps.extracter.outputs.version }}-${{ steps.extracter.outputs.sha_short }} -f build/docker/builder/gpu/${OS_NAME}/Dockerfile .
|
2023-11-30 07:58:32 +00:00
|
|
|
- name: Docker Build&Push
|
|
|
|
if: success() && github.event_name == 'push' && github.repository == 'milvus-io/milvus'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2023-12-01 06:48:32 +00:00
|
|
|
docker info
|
2023-11-30 07:58:32 +00:00
|
|
|
docker login -u ${{ secrets.DOCKERHUB_USER }} \
|
|
|
|
-p ${{ secrets.DOCKERHUB_TOKEN }}
|
2023-12-01 06:48:32 +00:00
|
|
|
# Building the first image
|
|
|
|
docker build -t milvusdb/milvus-env:gpu-${OS_NAME}-${{ steps.extracter.outputs.version }}-${{ steps.extracter.outputs.sha_short }} -f build/docker/builder/gpu/${OS_NAME}/Dockerfile .
|
|
|
|
docker push milvusdb/milvus-env:gpu-${OS_NAME}-${{ steps.extracter.outputs.version }}-${{ steps.extracter.outputs.sha_short }}
|
|
|
|
|
|
|
|
# Building the second image
|
|
|
|
docker build -t milvusdb/milvus-env:gpu-${OS_NAME}-latest -f build/docker/builder/gpu/${OS_NAME}/Dockerfile .
|
|
|
|
docker push milvusdb/milvus-env:gpu-${OS_NAME}-latest
|
|
|
|
|
2023-11-30 07:58:32 +00:00
|
|
|
- name: Update Builder Image Changes
|
|
|
|
if: success() && github.event_name == 'push' && github.repository == 'milvus-io/milvus' && matrix.os == 'ubuntu20.04'
|
|
|
|
continue-on-error: true
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
sed -i "s#^GPU_DATE_VERSION=.*#GPU_DATE_VERSION=${{ steps.extracter.outputs.version }}-${{ steps.extracter.outputs.sha_short }}#g" .env
|
|
|
|
sed -i "s#^LATEST_GPU_DATE_VERSION=.*#LATEST_GPU_DATE_VERSION=${{ steps.extracter.outputs.version }}-${{ steps.extracter.outputs.sha_short }}#g" .env
|
|
|
|
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
|
|
git config --local user.name "github-actions[bot]"
|
|
|
|
git add .env
|
|
|
|
git commit -m "Update Builder gpu image changes"
|
|
|
|
- name: Create Pull Request
|
|
|
|
id: cpr
|
|
|
|
if: success() && github.event_name == 'push' && github.repository == 'milvus-io/milvus' && matrix.os == 'ubuntu20.04'
|
|
|
|
continue-on-error: true
|
|
|
|
uses: peter-evans/create-pull-request@v3
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
|
|
|
|
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
|
|
|
|
signoff: false
|
|
|
|
branch: update_gpu_builder_${{ github.sha }}
|
|
|
|
delete-branch: true
|
|
|
|
title: '[automated] Update Builder gpu image changes'
|
|
|
|
body: |
|
|
|
|
Update Builder gpu image changes
|
|
|
|
See changes: https://github.com/milvus-io/milvus/commit/${{ github.sha }}
|
|
|
|
Signed-off-by: ${{ github.actor }} ${{ github.actor }}@users.noreply.github.com
|
|
|
|
- name: Check outputs
|
|
|
|
if: success() && github.event_name == 'push' && github.repository == 'milvus-io/milvus' && matrix.os == 'ubuntu20.04'
|
|
|
|
run: |
|
|
|
|
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
|
|
|
|
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
|