mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
Some checks failed
CodeQL / codeql (push) Has been cancelled
Docker Check / lint (push) Has been cancelled
Docker Check / build (push) Has been cancelled
Gateway Conformance / gateway-conformance (push) Has been cancelled
Gateway Conformance / gateway-conformance-libp2p-experiment (push) Has been cancelled
Go Build / go-build (push) Has been cancelled
Go Check / go-check (push) Has been cancelled
Go Lint / go-lint (push) Has been cancelled
Go Test / go-test (push) Has been cancelled
Interop / interop-prep (push) Has been cancelled
Sharness / sharness-test (push) Has been cancelled
Spell Check / spellcheck (push) Has been cancelled
Interop / helia-interop (push) Has been cancelled
Interop / ipfs-webui (push) Has been cancelled
* feat(ci): docker linting adds hadolint to validate dockerfile best practices configures project-specific rules in .hadolint.yaml * fix(ci): enable hadolint console output adds verbose and tty format to see linting results in CI logs * test: trigger hadolint warning remove --no-install-recommends to test CI output * fix(ci): fail hadolint on warnings stricter linting to catch all best practice violations * fix: add --no-install-recommends to apt-get reduces image size by avoiding unnecessary packages * refactor: use WORKDIR instead of cd in dockerfile replaces cd commands with WORKDIR for cleaner dockerfile removes unnecessary hadolint ignore rules DL3003 and DL3009 * chore: simplify hadolint config removes unnecessary override rules for cleaner config
143 lines
4.8 KiB
YAML
143 lines
4.8 KiB
YAML
# This workflow builds and publishes official Docker images to Docker Hub.
|
|
# It handles multi-platform builds (amd64, arm/v7, arm64/v8) and pushes tagged releases.
|
|
# This workflow is triggered on tags, specific branches, and can be manually dispatched.
|
|
# For quick build checks during development, see docker-check.yml
|
|
name: Docker Push
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
push:
|
|
description: 'Push to Docker Hub'
|
|
required: true
|
|
default: 'false'
|
|
tags:
|
|
description: 'Custom tags to use for the push'
|
|
required: false
|
|
default: ''
|
|
# # If we decide to build all images on every PR, we should make sure that
|
|
# # they are NOT pushed to Docker Hub.
|
|
# pull_request:
|
|
# paths-ignore:
|
|
# - '**/*.md'
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- 'staging'
|
|
- 'bifrost-*'
|
|
tags:
|
|
- 'v*'
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
jobs:
|
|
docker-hub:
|
|
if: github.repository == 'ipfs/kubo' || github.event_name == 'workflow_dispatch'
|
|
name: Push Docker image to Docker Hub
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
env:
|
|
IMAGE_NAME: ipfs/kubo
|
|
LEGACY_IMAGE_NAME: ipfs/go-ipfs
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v5
|
|
|
|
- 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@v3
|
|
with:
|
|
username: ${{ vars.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Get tags
|
|
id: tags
|
|
if: github.event.inputs.tags == ''
|
|
run: |
|
|
echo "value<<EOF" >> $GITHUB_OUTPUT
|
|
./bin/get-docker-tags.sh "$(date -u +%F)" >> $GITHUB_OUTPUT
|
|
echo "EOF" >> $GITHUB_OUTPUT
|
|
shell: bash
|
|
|
|
# We have to build each platform separately because when using multi-arch
|
|
# builds, only one platform is being loaded into the cache. This would
|
|
# prevent us from testing the other platforms.
|
|
- name: Build Docker image (linux/amd64)
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
platforms: linux/amd64
|
|
context: .
|
|
push: false
|
|
load: true
|
|
file: ./Dockerfile
|
|
tags: ${{ env.IMAGE_NAME }}:linux-amd64
|
|
cache-from: |
|
|
type=gha
|
|
type=registry,ref=${{ env.IMAGE_NAME }}:buildcache
|
|
cache-to: type=gha,mode=max
|
|
|
|
- name: Build Docker image (linux/arm/v7)
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
platforms: linux/arm/v7
|
|
context: .
|
|
push: false
|
|
load: true
|
|
file: ./Dockerfile
|
|
tags: ${{ env.IMAGE_NAME }}:linux-arm-v7
|
|
cache-from: |
|
|
type=gha
|
|
type=registry,ref=${{ env.IMAGE_NAME }}:buildcache
|
|
cache-to: type=gha,mode=max
|
|
|
|
- name: Build Docker image (linux/arm64/v8)
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
platforms: linux/arm64/v8
|
|
context: .
|
|
push: false
|
|
load: true
|
|
file: ./Dockerfile
|
|
tags: ${{ env.IMAGE_NAME }}:linux-arm64-v8
|
|
cache-from: |
|
|
type=gha
|
|
type=registry,ref=${{ env.IMAGE_NAME }}:buildcache
|
|
cache-to: type=gha,mode=max
|
|
|
|
# We test all the images on amd64 host here. This uses QEMU to emulate
|
|
# the other platforms.
|
|
# NOTE: --version should finish instantly, but sometimes
|
|
# it hangs on github CI (could be qemu issue), so we retry to remove false negatives
|
|
- name: Smoke-test linux-amd64
|
|
run: for i in {1..3}; do timeout 15s docker run --rm $IMAGE_NAME:linux-amd64 version --all && break || [ $i = 3 ] && exit 1; done
|
|
timeout-minutes: 1
|
|
- name: Smoke-test linux-arm-v7
|
|
run: for i in {1..3}; do timeout 15s docker run --rm $IMAGE_NAME:linux-arm-v7 version --all && break || [ $i = 3 ] && exit 1; done
|
|
timeout-minutes: 1
|
|
- name: Smoke-test linux-arm64-v8
|
|
run: for i in {1..3}; do timeout 15s docker run --rm $IMAGE_NAME:linux-arm64-v8 version --all && break || [ $i = 3 ] && exit 1; done
|
|
timeout-minutes: 1
|
|
|
|
# This will only push the previously built images.
|
|
- if: github.event_name != 'workflow_dispatch' || github.event.inputs.push == 'true'
|
|
name: Publish to Docker Hub
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
|
|
context: .
|
|
push: true
|
|
file: ./Dockerfile
|
|
tags: "${{ github.event.inputs.tags || steps.tags.outputs.value }}"
|
|
cache-from: |
|
|
type=gha
|
|
type=registry,ref=${{ env.IMAGE_NAME }}:buildcache
|
|
cache-to: |
|
|
type=gha,mode=max
|
|
type=registry,ref=${{ env.IMAGE_NAME }}:buildcache,mode=max
|