Release Docker Images Nightly (Ascend NPU) #219
This file contains hidden or 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: Release Docker Images Nightly (NPU) | |
| on: | |
| pull_request: | |
| branches: | |
| - 'main' | |
| paths: | |
| - '.github/workflows/release-docker-npu-nightly.yml' | |
| - 'docker/npu.Dockerfile' | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04-arm | |
| strategy: | |
| matrix: | |
| cann_version: ["8.5.0"] | |
| device_type: ["910b", "a3"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Free up disk space | |
| uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1 | |
| with: | |
| tool-cache: true | |
| docker-images: false | |
| - name: Setup Docker buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Docker meta | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: | | |
| lmsysorg/sglang | |
| # push with schedule event | |
| # push with workflow_dispatch event | |
| tags: | | |
| type=ref,event=pr | |
| type=ref,event=branch | |
| type=schedule,pattern=main | |
| flavor: | | |
| latest=false | |
| suffix=-cann${{ matrix.cann_version }}-${{ matrix.device_type }},onlatest=true | |
| # Login against a Docker registry except on PR | |
| # https://github.com/docker/login-action | |
| - name: Log into docker hub | |
| uses: docker/login-action@v3 | |
| if: ${{ github.repository == 'sgl-project/sglang' && github.event_name != 'pull_request' }} | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| # Enable Docker multi-architecture build environment | |
| # Emulate non-native architectures | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| # Required for building and pushing multi-arch Docker images | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| # Build and push Docker image with Buildx (don't push on PR) | |
| # https://github.com/docker/build-push-action | |
| - name: Build and push Docker image | |
| id: build-and-push | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: docker | |
| file: docker/npu.Dockerfile | |
| platforms: linux/arm64,linux/amd64 | |
| labels: ${{ steps.meta.outputs.labels }} | |
| tags: ${{ steps.meta.outputs.tags }} | |
| push: ${{ github.repository == 'sgl-project/sglang' && github.event_name != 'pull_request' }} | |
| provenance: false | |
| build-args: | | |
| SGLANG_KERNEL_NPU_TAG=2026.02.01.post2 | |
| CANN_VERSION=${{ matrix.cann_version }} | |
| DEVICE_TYPE=${{ matrix.device_type }} |