split up CI steps
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
b8108f5897
commit
c2fa8e6f8d
1 changed files with 148 additions and 255 deletions
403
.github/workflows/ci.yml
vendored
403
.github/workflows/ci.yml
vendored
|
@ -26,11 +26,9 @@ permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
setup:
|
||||||
name: CI and Artifacts
|
name: CI Setup
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Sync repository
|
- name: Sync repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -94,291 +92,186 @@ jobs:
|
||||||
./bin/nix-build-and-cache .#devShells.x86_64-linux.default.inputDerivation
|
./bin/nix-build-and-cache .#devShells.x86_64-linux.default.inputDerivation
|
||||||
|
|
||||||
|
|
||||||
|
build-and-test:
|
||||||
|
name: CI and Artifacts
|
||||||
|
needs: setup
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
target: [
|
||||||
|
"static-x86_64-unknown-linux-musl",
|
||||||
|
"static-x86_64-unknown-linux-musl-jemalloc",
|
||||||
|
"static-x86_64-unknown-linux-musl-hmalloc",
|
||||||
|
"static-aarch64-unknown-linux-musl",
|
||||||
|
"static-aarch64-unknown-linux-musl-jemalloc",
|
||||||
|
"static-aarch64-unknown-linux-musl-hmalloc",
|
||||||
|
]
|
||||||
|
oci-target: [
|
||||||
|
"x86_64-unknown-linux-gnu",
|
||||||
|
"x86_64-unknown-linux-musl",
|
||||||
|
"x86_64-unknown-linux-musl-jemalloc",
|
||||||
|
"x86_64-unknown-linux-musl-hmalloc",
|
||||||
|
"aarch64-unknown-linux-musl",
|
||||||
|
"aarch64-unknown-linux-musl-jemalloc",
|
||||||
|
"aarch64-unknown-linux-musl-hmalloc",
|
||||||
|
]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Download build environment
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: build-environment
|
||||||
|
|
||||||
|
|
||||||
- name: Perform continuous integration
|
- name: Perform continuous integration
|
||||||
run: direnv exec . engage
|
run: direnv exec . engage
|
||||||
|
|
||||||
|
|
||||||
- name: Build static-x86_64-unknown-linux-musl and Create static deb-x86_64-unknown-linux-musl
|
- name: Build static artifacts
|
||||||
run: |
|
run: |
|
||||||
./bin/nix-build-and-cache .#static-x86_64-unknown-linux-musl
|
./bin/nix-build-and-cache .#${{ matrix.target }}
|
||||||
mkdir -p target/release
|
mkdir -p target/release
|
||||||
cp -v -f result/bin/conduit target/release
|
cp -v -f result/bin/conduit target/release
|
||||||
direnv exec . cargo deb --no-build
|
direnv exec . cargo deb --no-build --output target/debian/${{ matrix.target }}.deb
|
||||||
|
|
||||||
- name: Upload artifact static-x86_64-unknown-linux-musl
|
- name: Upload static artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: static-x86_64-unknown-linux-musl
|
name: ${{ matrix.target }}
|
||||||
path: result/bin/conduit
|
path: result/bin/conduit
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Upload artifact deb-x86_64-unknown-linux-musl
|
- name: Upload static deb artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: x86_64-unknown-linux-musl.deb
|
name: ${{ matrix.target }}.deb
|
||||||
path: target/debian/*.deb
|
path: target/debian/${{ matrix.target }}.deb
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
- name: Build static-x86_64-unknown-linux-musl-jemalloc and Create static deb-x86_64-unknown-linux-musl-jemalloc
|
|
||||||
|
- name: Build OCI images
|
||||||
run: |
|
run: |
|
||||||
./bin/nix-build-and-cache .#static-x86_64-unknown-linux-musl-jemalloc
|
./bin/nix-build-and-cache .#oci-image-${{ matrix.oci-target }}
|
||||||
mkdir -p target/release
|
cp -v -f result oci-image-${{ matrix.oci-target }}.tar.gz
|
||||||
cp -v -f result/bin/conduit target/release
|
|
||||||
direnv exec . cargo deb --no-build
|
|
||||||
|
|
||||||
- name: Upload artifact static-x86_64-unknown-linux-musl-jemalloc
|
- name: Upload OCI image artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: static-x86_64-unknown-linux-musl-jemalloc
|
name: oci-image-${{ matrix.oci-target }}
|
||||||
path: result/bin/conduit
|
path: oci-image-${{ matrix.oci-target }}.tar.gz
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Upload artifact deb-x86_64-unknown-linux-musl-jemalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: x86_64-unknown-linux-musl-jemalloc.deb
|
|
||||||
path: target/debian/*.deb
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Build static-x86_64-unknown-linux-musl-hmalloc and Create static deb-x86_64-unknown-linux-musl-hmalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#static-x86_64-unknown-linux-musl-hmalloc
|
|
||||||
mkdir -p target/release
|
|
||||||
cp -v -f result/bin/conduit target/release
|
|
||||||
direnv exec . cargo deb --no-build
|
|
||||||
|
|
||||||
- name: Upload artifact static-x86_64-unknown-linux-musl-hmalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: static-x86_64-unknown-linux-musl-hmalloc
|
|
||||||
path: result/bin/conduit
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Upload artifact deb-x86_64-unknown-linux-musl-hmalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: x86_64-unknown-linux-musl-hmalloc.deb
|
|
||||||
path: target/debian/*.deb
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
|
|
||||||
- name: Build static-aarch64-unknown-linux-musl
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#static-aarch64-unknown-linux-musl
|
|
||||||
|
|
||||||
- name: Upload artifact static-aarch64-unknown-linux-musl
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: static-aarch64-unknown-linux-musl
|
|
||||||
path: result/bin/conduit
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Build static-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#static-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
|
|
||||||
- name: Upload artifact static-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: static-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
path: result/bin/conduit
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Build static-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#static-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
|
|
||||||
- name: Upload artifact static-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: static-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
path: result/bin/conduit
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
|
|
||||||
- name: Build oci-image-x86_64-unknown-linux-gnu
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image
|
|
||||||
cp -v -f result oci-image-amd64.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-x86_64-unknown-linux-gnu
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: oci-image-x86_64-unknown-linux-gnu
|
|
||||||
path: oci-image-amd64.tar.gz
|
|
||||||
if-no-files-found: error
|
|
||||||
# don't compress again
|
|
||||||
compression-level: 0
|
|
||||||
|
|
||||||
- name: Build oci-image-x86_64-unknown-linux-gnu-jemalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image-jemalloc
|
|
||||||
cp -v -f result oci-image-amd64.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-x86_64-unknown-linux-gnu-jemalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: oci-image-x86_64-unknown-linux-gnu-jemalloc
|
|
||||||
path: oci-image-amd64.tar.gz
|
|
||||||
if-no-files-found: error
|
|
||||||
# don't compress again
|
|
||||||
compression-level: 0
|
|
||||||
|
|
||||||
- name: Build oci-image-x86_64-unknown-linux-gnu-hmalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image-hmalloc
|
|
||||||
cp -v -f result oci-image-amd64.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-x86_64-unknown-linux-gnu-hmalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: oci-image-x86_64-unknown-linux-gnu-hmalloc
|
|
||||||
path: oci-image-amd64.tar.gz
|
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
# don't compress again
|
# don't compress again
|
||||||
compression-level: 0
|
compression-level: 0
|
||||||
|
|
||||||
|
|
||||||
- name: Build oci-image-aarch64-unknown-linux-musl
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image-aarch64-unknown-linux-musl
|
|
||||||
cp -v -f result oci-image-arm64v8.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-aarch64-unknown-linux-musl
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: oci-image-aarch64-unknown-linux-musl
|
|
||||||
path: oci-image-arm64v8.tar.gz
|
|
||||||
if-no-files-found: error
|
|
||||||
# don't compress again
|
|
||||||
compression-level: 0
|
|
||||||
|
|
||||||
- name: Build oci-image-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
cp -v -f result oci-image-arm64v8.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: oci-image-aarch64-unknown-linux-musl-jemalloc
|
|
||||||
path: oci-image-arm64v8.tar.gz
|
|
||||||
if-no-files-found: error
|
|
||||||
# don't compress again
|
|
||||||
compression-level: 0
|
|
||||||
|
|
||||||
- name: Build oci-image-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
run: |
|
|
||||||
./bin/nix-build-and-cache .#oci-image-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
cp -v -f result oci-image-arm64v8.tar.gz
|
|
||||||
|
|
||||||
- name: Upload artifact oci-image-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: oci-image-aarch64-unknown-linux-musl-hmalloc
|
|
||||||
path: oci-image-arm64v8.tar.gz
|
|
||||||
if-no-files-found: error
|
|
||||||
# don't compress again
|
|
||||||
compression-level: 0
|
|
||||||
|
|
||||||
|
|
||||||
- name: Extract metadata for Dockerhub
|
publish:
|
||||||
env:
|
needs: build-and-test
|
||||||
REGISTRY: registry.hub.docker.com
|
runs-on: ubuntu-latest
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
steps:
|
||||||
id: meta-dockerhub
|
- name: Download build environment
|
||||||
uses: docker/metadata-action@v5
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
name: build-environment
|
||||||
|
|
||||||
- name: Extract metadata for GitHub Container Registry
|
- name: Extract metadata for Dockerhub
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: registry.hub.docker.com
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
IMAGE_NAME: ${{ github.repository }}
|
||||||
id: meta-ghcr
|
id: meta-dockerhub
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
|
|
||||||
|
- name: Extract metadata for GitHub Container Registry
|
||||||
|
env:
|
||||||
|
REGISTRY: ghcr.io
|
||||||
|
IMAGE_NAME: ${{ github.repository }}
|
||||||
|
id: meta-ghcr
|
||||||
|
uses: docker/metadata-action@v5
|
||||||
|
with:
|
||||||
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
|
|
||||||
|
|
||||||
- name: Login to Dockerhub
|
- name: Login to Dockerhub
|
||||||
env:
|
env:
|
||||||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
DOCKER_USERNAME: ${{ vars.DOCKER_USERNAME }}
|
DOCKER_USERNAME: ${{ vars.DOCKER_USERNAME }}
|
||||||
if: ${{ (github.event_name != 'pull_request') && (env.DOCKER_USERNAME != '') && (env.DOCKERHUB_TOKEN != '') }}
|
if: ${{ (github.event_name != 'pull_request') && (env.DOCKER_USERNAME != '') && (env.DOCKERHUB_TOKEN != '') }}
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
# username is not really a secret
|
# username is not really a secret
|
||||||
username: ${{ vars.DOCKER_USERNAME }}
|
username: ${{ vars.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to GitHub Container Registry
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
with:
|
with:
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: ${{ env.REGISTRY }}
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
|
||||||
- name: Publish to Dockerhub
|
- name: Publish to Dockerhub
|
||||||
env:
|
env:
|
||||||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
DOCKER_USERNAME: ${{ vars.DOCKER_USERNAME }}
|
DOCKER_USERNAME: ${{ vars.DOCKER_USERNAME }}
|
||||||
IMAGE_NAME: docker.io/${{ github.repository }}
|
IMAGE_NAME: docker.io/${{ github.repository }}
|
||||||
IMAGE_SUFFIX_AMD64: amd64
|
IMAGE_SUFFIX_AMD64: amd64
|
||||||
IMAGE_SUFFIX_ARM64V8: arm64v8
|
IMAGE_SUFFIX_ARM64V8: arm64v8
|
||||||
if: ${{ (github.event_name != 'pull_request') && (env.DOCKER_USERNAME != '') && (env.DOCKERHUB_TOKEN != '') }}
|
if: ${{ (github.event_name != 'pull_request') && (env.DOCKER_USERNAME != '') && (env.DOCKERHUB_TOKEN != '') }}
|
||||||
run: |
|
run: |
|
||||||
docker load -i oci-image-amd64.tar.gz
|
docker load -i oci-image-amd64.tar.gz
|
||||||
IMAGE_ID_AMD64=$(docker images -q conduit:main)
|
IMAGE_ID_AMD64=$(docker images -q conduit:main)
|
||||||
docker load -i oci-image-arm64v8.tar.gz
|
docker load -i oci-image-arm64v8.tar.gz
|
||||||
IMAGE_ID_ARM64V8=$(docker images -q conduit:main)
|
IMAGE_ID_ARM64V8=$(docker images -q conduit:main)
|
||||||
|
|
||||||
# Tag and push the architecture specific images
|
# Tag and push the architecture specific images
|
||||||
docker tag $IMAGE_ID_AMD64 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
docker tag $IMAGE_ID_AMD64 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
||||||
docker tag $IMAGE_ID_ARM64V8 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
docker tag $IMAGE_ID_ARM64V8 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
||||||
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
||||||
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
||||||
# Tag the multi-arch image
|
# Tag the multi-arch image
|
||||||
docker manifest create $IMAGE_NAME:$GITHUB_SHA --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
docker manifest create $IMAGE_NAME:$GITHUB_SHA --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
||||||
docker manifest push $IMAGE_NAME:$GITHUB_SHA
|
docker manifest push $IMAGE_NAME:$GITHUB_SHA
|
||||||
# Tag and push the git ref
|
# Tag and push the git ref
|
||||||
docker manifest create $IMAGE_NAME:$GITHUB_REF_NAME --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
docker manifest create $IMAGE_NAME:$GITHUB_REF_NAME --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
||||||
docker manifest push $IMAGE_NAME:$GITHUB_REF_NAME
|
docker manifest push $IMAGE_NAME:$GITHUB_REF_NAME
|
||||||
# Tag "main" as latest (stable branch)
|
# Tag "main" as latest (stable branch)
|
||||||
if [[ "$GITHUB_REF_NAME" = "main" ]]; then
|
if [[ "$GITHUB_REF_NAME" = "main" ]]; then
|
||||||
docker manifest create $IMAGE_NAME:latest --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
docker manifest create $IMAGE_NAME:latest --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
||||||
docker manifest push $IMAGE_NAME:latest
|
docker manifest push $IMAGE_NAME:latest
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Publish to GitHub Container Registry
|
- name: Publish to GitHub Container Registry
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
env:
|
env:
|
||||||
IMAGE_NAME: ghcr.io/${{ github.repository }}
|
IMAGE_NAME: ghcr.io/${{ github.repository }}
|
||||||
IMAGE_SUFFIX_AMD64: amd64
|
IMAGE_SUFFIX_AMD64: amd64
|
||||||
IMAGE_SUFFIX_ARM64V8: arm64v8
|
IMAGE_SUFFIX_ARM64V8: arm64v8
|
||||||
run: |
|
run: |
|
||||||
docker load -i oci-image-amd64.tar.gz
|
docker load -i oci-image-amd64.tar.gz
|
||||||
IMAGE_ID_AMD64=$(docker images -q conduit:main)
|
IMAGE_ID_AMD64=$(docker images -q conduit:main)
|
||||||
docker load -i oci-image-arm64v8.tar.gz
|
docker load -i oci-image-arm64v8.tar.gz
|
||||||
IMAGE_ID_ARM64V8=$(docker images -q conduit:main)
|
IMAGE_ID_ARM64V8=$(docker images -q conduit:main)
|
||||||
|
|
||||||
# Tag and push the architecture specific images
|
# Tag and push the architecture specific images
|
||||||
docker tag $IMAGE_ID_AMD64 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
docker tag $IMAGE_ID_AMD64 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
||||||
docker tag $IMAGE_ID_ARM64V8 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
docker tag $IMAGE_ID_ARM64V8 $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
||||||
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64
|
||||||
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
docker push $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
||||||
# Tag the multi-arch image
|
# Tag the multi-arch image
|
||||||
docker manifest create $IMAGE_NAME:$GITHUB_SHA --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
docker manifest create $IMAGE_NAME:$GITHUB_SHA --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
||||||
docker manifest push $IMAGE_NAME:$GITHUB_SHA
|
docker manifest push $IMAGE_NAME:$GITHUB_SHA
|
||||||
# Tag and push the git ref
|
# Tag and push the git ref
|
||||||
docker manifest create $IMAGE_NAME:$GITHUB_REF_NAME --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
docker manifest create $IMAGE_NAME:$GITHUB_REF_NAME --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
||||||
docker manifest push $IMAGE_NAME:$GITHUB_REF_NAME
|
docker manifest push $IMAGE_NAME:$GITHUB_REF_NAME
|
||||||
# Tag "main" as latest (stable branch)
|
# Tag "main" as latest (stable branch)
|
||||||
if [[ "$GITHUB_REF_NAME" = "main" ]]; then
|
if [[ "$GITHUB_REF_NAME" = "main" ]]; then
|
||||||
docker manifest create $IMAGE_NAME:latest --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
docker manifest create $IMAGE_NAME:latest --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_AMD64 --amend $IMAGE_NAME:$GITHUB_SHA-$IMAGE_SUFFIX_ARM64V8
|
||||||
docker manifest push $IMAGE_NAME:latest
|
docker manifest push $IMAGE_NAME:latest
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue