-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
97 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
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: /.*/ |
This file contains 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
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 |
This file contains 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