Skip to content

Commit

Permalink
remove arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkAfCod committed Jul 24, 2024
1 parent 1a5074c commit b6557f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,7 @@ jobs:
matrix:
platform:
- ubuntu-22.04
- macos-latest
runs-on: ${{ matrix.platform }}
name: Build on ${{ matrix.distro }}-${{ matrix.arch }}
steps:
- name: Prepare
id: prep
Expand Down
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ task dockerUpload {
}

task dockerUploadRelease {
def archs = ["arm64", "amd64"]
def archs = ["amd64"]
def image = "${dockerImageName}:${dockerBuildVersion}"

doLast {
Expand Down Expand Up @@ -868,9 +868,8 @@ task dockerUploadRelease {

task manifestDocker {
def image = "${dockerImageName}:${dockerBuildVersion}"
def archs = [
"arm64",
"amd64"] //TODO: this assumes dockerUpload task has already been run on 2 different archs!
def archs = ["amd64"]
//TODO: this assumes dockerUpload task has already been run on 2 different archs!
doLast {
exec {
def targets = ""
Expand Down

0 comments on commit b6557f5

Please sign in to comment.