| |
| |
| |
| |
|
|
| |
| |
| |
|
|
| name: Publish Docker image |
|
|
| on: |
| workflow_dispatch: |
| schedule: |
| |
| - cron: '12 4 * * *' |
|
|
| concurrency: |
| group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }} |
| cancel-in-progress: true |
|
|
| |
| |
| permissions: |
| packages: write |
|
|
| jobs: |
| push_to_registry: |
| name: Push Docker image to Docker Hub |
|
|
| runs-on: ubuntu-22.04 |
| env: |
| COMMIT_SHA: ${{ github.sha }} |
| strategy: |
| fail-fast: false |
| matrix: |
| config: |
| |
| - { tag: "cpu", dockerfile: ".devops/cpu.Dockerfile", platforms: "linux/amd64,linux/arm64", full: true, light: true, server: true, freediskspace: false} |
| - { tag: "cuda", dockerfile: ".devops/cuda.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, freediskspace: false} |
| - { tag: "musa", dockerfile: ".devops/musa.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, freediskspace: false} |
| - { tag: "intel", dockerfile: ".devops/intel.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, freediskspace: false} |
| - { tag: "vulkan", dockerfile: ".devops/vulkan.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, freediskspace: false} |
| |
| |
| steps: |
| - name: Check out the repo |
| uses: actions/checkout@v4 |
| with: |
| fetch-depth: 0 |
|
|
| - name: Set up QEMU |
| uses: docker/setup-qemu-action@v3 |
|
|
| - name: Set up Docker Buildx |
| uses: docker/setup-buildx-action@v3 |
|
|
| - name: Log in to Docker Hub |
| uses: docker/login-action@v2 |
| with: |
| registry: ghcr.io |
| username: ${{ github.repository_owner }} |
| password: ${{ secrets.GITHUB_TOKEN }} |
|
|
| - name: Determine tag name |
| id: tag |
| shell: bash |
| run: | |
| BUILD_NUMBER="$(git rev-list --count HEAD)" |
| SHORT_HASH="$(git rev-parse --short=7 HEAD)" |
| REPO_OWNER="${GITHUB_REPOSITORY_OWNER@L}" # to lower case |
| REPO_NAME="${{ github.event.repository.name }}" |
| |
| |
| if [[ "${{ env.GITHUB_BRANCH_NAME }}" == "master" ]]; then |
| TAG_POSTFIX="-b${BUILD_NUMBER}" |
| else |
| SAFE_NAME=$(echo "${{ env.GITHUB_BRANCH_NAME }}" | tr '/' '-') |
| TAG_POSTFIX="-${SAFE_NAME}-${SHORT_HASH}" |
| fi |
| |
| if [[ "${{ matrix.config.tag }}" == "cpu" ]]; then |
| TYPE="" |
| else |
| TYPE="-${{ matrix.config.tag }}" |
| fi |
| PREFIX="ghcr.io/${REPO_OWNER}/${REPO_NAME}:" |
| FULLTAGS="${PREFIX}full${TYPE},${PREFIX}full${TYPE}${TAG_POSTFIX}" |
| LIGHTTAGS="${PREFIX}light${TYPE},${PREFIX}light${TYPE}${TAG_POSTFIX}" |
| SERVERTAGS="${PREFIX}server${TYPE},${PREFIX}server${TYPE}${TAG_POSTFIX}" |
| echo "full_output_tags=$FULLTAGS" >> $GITHUB_OUTPUT |
| echo "light_output_tags=$LIGHTTAGS" >> $GITHUB_OUTPUT |
| echo "server_output_tags=$SERVERTAGS" >> $GITHUB_OUTPUT |
| echo "full_output_tags=$FULLTAGS" |
| echo "light_output_tags=$LIGHTTAGS" |
| echo "server_output_tags=$SERVERTAGS" |
| env: |
| GITHUB_BRANCH_NAME: ${{ github.head_ref || github.ref_name }} |
| GITHUB_REPOSITORY_OWNER: '${{ github.repository_owner }}' |
|
|
| - name: Free Disk Space (Ubuntu) |
| if: ${{ matrix.config.free_disk_space == true }} |
| uses: ggml-org/free-disk-space@v1.3.1 |
| with: |
| |
| |
| tool-cache: false |
|
|
| |
| |
| android: true |
| dotnet: true |
| haskell: true |
| large-packages: true |
| docker-images: true |
| swap-storage: true |
|
|
| - name: Build and push Full Docker image (tagged + versioned) |
| if: ${{ (github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && matrix.config.full == true }} |
| uses: docker/build-push-action@v6 |
| with: |
| context: . |
| push: true |
| platforms: ${{ matrix.config.platforms }} |
| |
| tags: ${{ steps.tag.outputs.full_output_tags }} |
| file: ${{ matrix.config.dockerfile }} |
| target: full |
| provenance: false |
| |
| cache-from: type=gha |
| cache-to: type=gha,mode=max |
| |
| |
| |
|
|
| - name: Build and push Light Docker image (tagged + versioned) |
| if: ${{ (github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && matrix.config.light == true }} |
| uses: docker/build-push-action@v6 |
| with: |
| context: . |
| push: true |
| platforms: ${{ matrix.config.platforms }} |
| |
| tags: ${{ steps.tag.outputs.light_output_tags }} |
| file: ${{ matrix.config.dockerfile }} |
| target: light |
| provenance: false |
| |
| cache-from: type=gha |
| cache-to: type=gha,mode=max |
| |
| |
| |
|
|
| - name: Build and push Server Docker image (tagged + versioned) |
| if: ${{ (github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && matrix.config.server == true }} |
| uses: docker/build-push-action@v6 |
| with: |
| context: . |
| push: true |
| platforms: ${{ matrix.config.platforms }} |
| |
| tags: ${{ steps.tag.outputs.server_output_tags }} |
| file: ${{ matrix.config.dockerfile }} |
| target: server |
| provenance: false |
| |
| cache-from: type=gha |
| cache-to: type=gha,mode=max |
| |
| |
| |
|
|