Skip to content

Commit

Permalink
add multi-arch-manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
dashaun committed Dec 14, 2023
1 parent ecb133f commit 5058c32
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 1 deletion.
38 changes: 38 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
version: 2.1

orbs:
docker: circleci/[email protected]
sdkman: joshdholtz/[email protected]

jobs:
arm64-native:
machine:
image: ubuntu-2004:current
resource_class: arm.medium
steps:
- checkout
- sdkman/setup-sdkman
- sdkman/sdkman-install:
candidate: java
version: 21.0.1-graalce
- run:
name: "bootBuildImage"
command: "./mvnw -Pnative spring-boot:build-image"
- docker/check:
docker-username: DOCKER_LOGIN
docker-password: DOCKERHUB_PASSWORD
- docker/push:
image: dashaun/com.javagrunt.listener.youtube
tag: $CIRCLE_TAG-aarch_64

workflows:
arm64-native-workflow:
jobs:
- arm64-native:
context:
- dashaun-dockerhub
filters:
tags:
only: /^v.*/
branches:
ignore: /.*/
58 changes: 58 additions & 0 deletions .github/workflows/amd64-native.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Native-AMD64

on:
push:
tags:
- "v*"

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/setup-java@v2
with:
distribution: 'liberica' # See 'Supported distributions' for available options
java-version: '21'
- name: Checkout master
uses: actions/checkout@v3
with:
submodules: true
#Build Image
- name: Build Image
run: ./mvnw -Pnative spring-boot:build-image
#Login to DockerHub
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
#Tag the version
#Deploy the image to the Docker registry
- name: Push Images to Docker Registry
run: docker push -a dashaun/com.javagrunt.listener.youtube


manifest:
needs: build
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: pull-arm64
uses: nick-fields/retry@v2
with:
timeout_minutes: 5
retry_wait_seconds: 60
max_attempts: 6
command: docker pull dashaun/com.javagrunt.listener.youtube:$GITHUB_REF_NAME-aarch_64
- name: create-manifest
run: |
docker manifest create dashaun/com.javagrunt.listener.youtube:$GITHUB_REF_NAME --amend dashaun/com.javagrunt.listener.youtube:$GITHUB_REF_NAME-x86_64 --amend dashaun/com.javagrunt.listener.youtube:$GITHUB_REF_NAME-aarch_64
docker manifest push dashaun/com.javagrunt.listener.youtube:$GITHUB_REF_NAME
docker manifest create dashaun/com.javagrunt.listener.youtube:latest --amend dashaun/com.javagrunt.listener.youtube:$GITHUB_REF_NAME-x86_64 --amend dashaun/com.javagrunt.listener.youtube:$GITHUB_REF_NAME-aarch_64
docker manifest push dashaun/com.javagrunt.listener.youtube:latest
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>com.javagrunt.listener</groupId>
<artifactId>youtube</artifactId>
<version>0</version>
<name>${project.groupId}:${project.artifactId}</name>
<name>${project.groupId}.${project.artifactId}</name>
<properties>
<java.version>21</java.version>
</properties>
Expand Down

0 comments on commit 5058c32

Please sign in to comment.